From: Mike Blumenkrantz Date: Wed, 1 Jan 2014 19:47:26 +0000 (-0500) Subject: fix comp theme fast popups to still have shadows X-Git-Tag: v1.9.0-alpha1~209 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f3496164d087039634c546d4ae5b7980dacea42e;p=platform%2Fupstream%2Felementary.git fix comp theme fast popups to still have shadows --- diff --git a/data/themes/edc/comp.edc b/data/themes/edc/comp.edc index 93561c0..b5b9165 100644 --- a/data/themes/edc/comp.edc +++ b/data/themes/edc/comp.edc @@ -620,6 +620,35 @@ group { name: "e/comp/frame/popup/fast"; color_class: ""; } } + part { name: "shadow"; mouse_events: 0; insert_before: "glow"; + clip_to: "clipper"; + description { state: "default" 0.0; + image.normal: "win_shadow.png"; + image.border: 14 14 14 14; + image.middle: 0; + rel1.to: "e.swallow.content"; + rel1.offset: -7 -3; + rel2.to: "e.swallow.content"; + rel2.offset: 6 11; + fill.smooth: 0; + } + description { state: "hidden" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + } + programs { + program { + signal: "e,state,shadow,on"; source: "e"; + action: STATE_SET "default" 0.0; + target: "shadow"; + } + program { + signal: "e,state,shadow,off"; source: "e"; + action: STATE_SET "hidden" 0.0; + target: "shadow"; + } } }