aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/elementary/data/themes/widgets/separator.edc
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--libraries/elementary/data/themes/widgets/separator.edc43
1 files changed, 43 insertions, 0 deletions
diff --git a/libraries/elementary/data/themes/widgets/separator.edc b/libraries/elementary/data/themes/widgets/separator.edc
new file mode 100644
index 0000000..0780c53
--- /dev/null
+++ b/libraries/elementary/data/themes/widgets/separator.edc
@@ -0,0 +1,43 @@
1group { name: "elm/separator/horizontal/default";
2 images {
3 image: "separator_h.png" COMP;
4 }
5 parts {
6 part { name: "separator"; // separator group
7 description { state: "default" 0.0;
8 min: 2 2;
9 rel1.offset: 4 4;
10 rel2.offset: -5 -5;
11 image {
12 normal: "separator_h.png";
13 }
14 fill {
15 smooth: 0;
16 }
17 }
18 }
19 }
20}
21
22///////////////////////////////////////////////////////////////////////////////
23group { name: "elm/separator/vertical/default";
24 images {
25 image: "separator_v.png" COMP;
26 }
27 parts {
28 part { name: "separator"; // separator group
29 description { state: "default" 0.0;
30 min: 2 2;
31 rel1.offset: 4 4;
32 rel2.offset: -5 -5;
33 image {
34 normal: "separator_v.png";
35 }
36 fill {
37 smooth: 0;
38 }
39 }
40 }
41 }
42}
43