Revert "The "new" theme is handled."

This reverts commit 2d5d45e365.
This commit is contained in:
Jason Felds
2013-07-18 17:42:22 -04:00
parent f57abda0bc
commit c872bb311c
11 changed files with 95 additions and 212 deletions
@@ -1,21 +1,10 @@
return Def.ActorFrame {
-- Default BG
Def.Quad {
InitCommand=function(self)
self:vertalign(top);
self:zoomto(SCREEN_WIDTH, 48);
self:diffuse(Color.Black);
self:diffusealpha(0.65);
end;
InitCommand=cmd(vertalign,top;zoomto,SCREEN_WIDTH,48;diffuse,Color.Black;diffusealpha,0.65);
};
-- Highlight
Def.Quad {
InitCommand=function(self)
self:vertalign(top);
self:zoomto(SCREEN_WIDTH, 1);
self:diffuse(Color.Blue);
self:faderight(1);
self:y(46);
end;
InitCommand=cmd(vertalign,top;zoomto,SCREEN_WIDTH,1;diffuse,Color.Blue;faderight,1;y,46);
};
};