small theme 'fix' for everything

SVN revision: 41800
This commit is contained in:
Hannes Janetzek 2009-08-16 02:32:16 +00:00
parent 30c9bc06ad
commit 2978414b95
1 changed files with 35 additions and 5 deletions

View File

@ -26601,8 +26601,9 @@ MIMEBASE("application/x-font-bdf","icon_mime_font_generic.png", ".BDF", 128);
rel2.relative: 0.5 1.0; rel2.relative: 0.5 1.0;
image { image {
normal: "menu_sel_bg.png"; normal: "menu_sel_bg.png";
border: 8 8 5 9; border: 8 8 4 7;
} }
} }
description { state: "wide" 0; description { state: "wide" 0;
inherit: "default" 0.0; inherit: "default" 0.0;
@ -26687,10 +26688,14 @@ MIMEBASE("application/x-font-bdf","icon_mime_font_generic.png", ".BDF", 128);
description { state: "default" 0.0; description { state: "default" 0.0;
rel1.to: "bg"; rel1.to: "bg";
rel2.to: "bg"; rel2.to: "bg";
rel2.relative: 1.0 0.5;
rel2.offset: -1 10;
image { image {
normal: "menu_sel_fg.png"; normal: "menu_sel_fg.png";
border: 8 8 11 4; border: 8 8 6 13;
} }
color: 255 255 255 150;
} }
} }
} }
@ -26746,7 +26751,6 @@ MIMEBASE("application/x-font-bdf","icon_mime_font_generic.png", ".BDF", 128);
part { name: "inner_clip"; part { name: "inner_clip";
type: RECT; type: RECT;
clip_to: "clip"; clip_to: "clip";
mouse_events: 0;
description { description {
state: "default" 0.0; state: "default" 0.0;
rel1.offset: 10 10; rel1.offset: 10 10;
@ -26754,10 +26758,23 @@ MIMEBASE("application/x-font-bdf","icon_mime_font_generic.png", ".BDF", 128);
} }
} }
part { name: "icon_clip";
type: RECT;
clip_to: "inner_clip";
description {
state: "default" 0.0;
color: 255 255 255 255;
}
description {
state: "faded" 0.0;
color: 255 255 255 200;
}
}
part { part {
name: "e.swallow.icons"; name: "e.swallow.icons";
type: SWALLOW; type: SWALLOW;
clip_to: "inner_clip"; clip_to: "icon_clip";
description { description {
state: "default" 0.0; state: "default" 0.0;
max: 64 64; max: 64 64;
@ -26770,7 +26787,7 @@ MIMEBASE("application/x-font-bdf","icon_mime_font_generic.png", ".BDF", 128);
} }
rel2 { rel2 {
relative: 0.0 1.0; relative: 0.0 1.0;
offset: -11 -11; offset: 74 -11;
} }
} }
} }
@ -26842,6 +26859,19 @@ MIMEBASE("application/x-font-bdf","icon_mime_font_generic.png", ".BDF", 128);
transition: SINUSOIDAL 0.3; transition: SINUSOIDAL 0.3;
target: "border"; target: "border";
} }
program { name: "update";
signal: "e,signal,update";
source: "e";
action: STATE_SET "faded" 0.0;
transition: DECELERATE 0.1;
target: "icon_clip";
after: "show_icon";
}
program { name: "show_icon";
action: STATE_SET "default" 0.0;
transition: ACCELERATE 0.3;
target: "icon_clip";
}
} }
} }