elm - theme - add outline style for frames submit/tizen/20200419.220844
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>
Sun, 19 Apr 2020 17:41:08 +0000 (18:41 +0100)
committerJongmin Lee <jm105.lee@samsung.com>
Sun, 19 Apr 2020 21:46:51 +0000 (06:46 +0900)
new standard style. outline.

data/elementary/themes/edc/elm/frame.edc

index e6ce022..42095c8 100644 (file)
@@ -283,3 +283,54 @@ group { name: "elm/frame/base/outdent_bottom";
       }
    }
 }
+
+group { name: "elm/frame/base/outline";
+   images.image: "shadow_square_tiny.png" COMP;
+   images.image: "bevel_out.png" COMP;
+      parts {
+         part { name: "shadow"; mouse_events: 0;
+            description { state: "default" 0.0;
+               rel1.offset: -1 0;
+               rel2.offset: 0 1;
+               image.normal: "shadow_square_tiny.png";
+               image.border: 6 6 6 6;
+               fill.smooth: 0;
+            }
+         }
+         part { name: "base"; type: RECT;
+            description { state: "default" 0.0;
+               rel1.offset: 3 0;
+               rel2.offset: -3 -3;
+               color: 64 64 64 255;
+            }
+         }
+         part { name: "clip"; type: RECT;
+            description { state: "default" 0.0;
+               rel1.offset: 5 0;
+               rel2.offset: -7 -7;
+            }
+         }
+         part { name: "elm.swallow.content"; type: SWALLOW;
+            clip_to: "clip";
+            description { state: "default" 0.0;
+               align: 0.0 1.0;
+               rel1.offset: 5 5;
+               rel2.offset: -5 -5;
+            }
+            description { state: "collapsed" 0.0;
+              inherit: "default" 0.0;
+              minmul: 1.0 0.0;
+            }
+         }
+         part { name: "bevel"; mouse_events: 0;
+            description { state: "default" 0.0;
+               rel1.offset: 2 2;
+               rel2.offset: -3 -3;
+               image.normal: "bevel_out.png";
+               image.border: 1 1 1 1;
+               image.middle: 0;
+               fill.smooth: 0;
+            }
+         }
+      }
+}