ui: apply compact image for simple.

This commit is contained in:
ChunEon Park 2014-08-15 00:03:42 +09:00
parent 3cfeb5c54b
commit 29125c1148
2 changed files with 5 additions and 17 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 157 B

After

Width:  |  Height:  |  Size: 204 B

View File

@ -2357,26 +2357,16 @@ group { name: "edit_layout";
fixed: 0 1;
}
}
part { name: "disabler_bg";
type: RECT;
mouse_events: 0;
description { state: "default" 0.0;
color: 0 0 0 0;
}
description { state: "disabled" 0.0;
color: 0 0 0 75;
}
}
part { name: "disabler_decorations";
part { name: "disabler";
description { state: "default" 0.0;
image.normal: "disabler.png";
fill.type: TILE;
color: 155 155 155 0;
color: 255 255 255 0;
visible: 0;
}
description { state: "disabled" 0.0;
inherit: "default" 0.0;
color: 55 55 77 200;
color: 255 255 255 255;
visible: 1;
}
}
@ -2399,15 +2389,13 @@ group { name: "edit_layout";
program { name: "layout_disable";
signal: "elm,state,disabled";
action: STATE_SET "disabled" 0.0;
target: "disabler_bg";
target: "disabler_decorations";
target: "disabler";
transition: DECELERATE 0.125;
}
program { name: "layout_enable";
signal: "elm,state,enabled";
action: STATE_SET "default" 0.0;
target: "disabler_bg";
target: "disabler_decorations";
target: "disabler";
transition: DECELERATE 0.125;
}
}