diff --git a/legacy/elementary/data/themes/widgets/focus_highlight.edc b/legacy/elementary/data/themes/widgets/focus_highlight.edc index 42f8f7c0f4..064e7f592b 100644 --- a/legacy/elementary/data/themes/widgets/focus_highlight.edc +++ b/legacy/elementary/data/themes/widgets/focus_highlight.edc @@ -170,63 +170,3 @@ } } } - -/////////////////////////////////////////////////////////////////////////////// - group { name: "elm/focus_highlight/bottom/default"; - parts { - part { name: "shine"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 0 255 0 50; - rel1.offset: 0 0; - rel2.offset: 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - color: 0 0 0 0; - } - } - - program { name: "show"; - signal: "elm,action,focus,show"; - source: "elm"; - action: ACTION_STOP; - target: "hide"; - target: "hide_start"; - target: "hide_end"; - after: "show_start"; - } - program { name: "show_start"; - action: STATE_SET "default" 0.0; - transition: LINEAR 0.2; - target: "shine"; - after: "show_end"; - } - program { name: "show_end"; - action: SIGNAL_EMIT "elm,action,focus,show,end" ""; - } - program { name: "hide"; - signal: "elm,action,focus,hide"; - source: "elm"; - action: ACTION_STOP; - target: "show"; - target: "show_start"; - target: "show_end"; - after: "hide_start"; - } - program { name: "hide_start"; - action: STATE_SET "disabled" 0.0; - transition: LINEAR 0.2; - target: "shine"; - after: "hide_end"; - } - program { name: "hide_end"; - action: SIGNAL_EMIT "elm,action,focus,hide,end" ""; - } - } - } - -