discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=f3496164d087039634c546d4ae5b7980dacea42e

commit f3496164d087039634c546d4ae5b7980dacea42e
Author: Mike Blumenkrantz <zm...@samsung.com>
Date:   Wed Jan 1 14:47:26 2014 -0500

    fix comp theme fast popups to still have shadows
---
 data/themes/edc/comp.edc | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

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";
+      }
    }
 }
 

-- 


Reply via email to