summaryrefslogtreecommitdiffstats
path: root/data/themes/default/edc/elm
diff options
context:
space:
mode:
authorOlliver Schinagl <o.schinagl@ultimaker.com>2015-04-14 06:19:13 (GMT)
committerOlliver Schinagl <o.schinagl@ultimaker.com>2015-04-28 05:07:14 (GMT)
commit3dba10661e2115fee38fe966fc819a58e5e5e10a (patch)
treef4a7a4a1ae0d2f18086e735288d62b580886f297 /data/themes/default/edc/elm
parent8ed626b71ab071f12e873df214ef7bfe33b20a58 (diff)
downloadeulogium-3dba10661e2115fee38fe966fc819a58e5e5e10a.zip
eulogium-3dba10661e2115fee38fe966fc819a58e5e5e10a.tar.gz
eulogium-3dba10661e2115fee38fe966fc819a58e5e5e10a.tar.bz2
update most basic theme components
Signed-off-by: Olliver Schinagl <o.schinagl@ultimaker.com>
Diffstat (limited to 'data/themes/default/edc/elm')
-rw-r--r--data/themes/default/edc/elm/bg.edc51
-rw-r--r--data/themes/default/edc/elm/separator.edc46
2 files changed, 42 insertions, 55 deletions
diff --git a/data/themes/default/edc/elm/bg.edc b/data/themes/default/edc/elm/bg.edc
index 2a0edc3..ed3fabb 100644
--- a/data/themes/default/edc/elm/bg.edc
+++ b/data/themes/default/edc/elm/bg.edc
@@ -6,34 +6,25 @@
elm.swallow.content: Used for elm_layout_part_content_set(bg, "overlay", content).
*/
-group { name: "elm/bg/base/default";
- images.image: "bevel_dark_out.png" COMP;
- parts {
- part { name: "base"; type: RECT;
- description { state: "default" 0.0;
- color_class: "dialog_base";
- color: 64 64 64 255;
- }
- }
- part { name: "elm.swallow.rectangle"; type: SWALLOW;
- description { state: "default" 0.0;
- }
- }
- part { name: "elm.swallow.background"; type: SWALLOW;
- description { state: "default" 0.0;
- }
- }
- part { name: "bevel";
- description { state: "default" 0.0;
- image.normal: "bevel_dark_out.png";
- image.border: 1 1 1 1;
- image.middle: 0;
- fill.smooth: 0;
- }
- }
- part { name: "elm.swallow.content"; type: SWALLOW;
- description { state: "default" 0.0;
- }
- }
- }
+group {name: "elm/bg/base/default";
+ parts {
+ part {name: "base"; type: RECT;
+ description {state: "default" 0.0;
+ color_class: "dialog_base";
+ color: 0 0 0 255;
+ }
+ }
+ part {name: "elm.swallow.rectangle"; type: SWALLOW;
+ description {state: "default" 0.0;
+ }
+ }
+ part {name: "elm.swallow.background"; type: SWALLOW;
+ description {state: "default" 0.0;
+ }
+ }
+ part {name: "elm.swallow.content"; type: SWALLOW;
+ description {state: "default" 0.0;
+ }
+ }
+ }
}
diff --git a/data/themes/default/edc/elm/separator.edc b/data/themes/default/edc/elm/separator.edc
index a61d978..71d2b48 100644
--- a/data/themes/default/edc/elm/separator.edc
+++ b/data/themes/default/edc/elm/separator.edc
@@ -1,27 +1,23 @@
-group { name: "elm/separator/horizontal/default";
- images.image: "bevel_dark_in.png" COMP;
- parts {
- part { name: "base";
- description { state: "default" 0.0;
- min: 2 2;
- max: 99999 2;
- rel1.offset: 4 4;
- rel2.offset: -5 -5;
- image.normal: "bevel_dark_in.png";
- image.border: 2 2 2 2;
- fill.smooth: 0;
- }
- }
- }
+group {name: "elm/separator/horizontal/default";
+ parts {
+ part {name: "base"; type: RECT;
+ description {state: "default" 0.0;
+ min: 1 1;
+ max: 99999 1;
+ color_class: "seperator";
+ rel1.offset: 2 2;
+ rel2.offset: -2 -2;
+ }
+ }
+ }
}
-group { name: "elm/separator/vertical/default";
- inherit: "elm/separator/horizontal/default";
- parts {
- part { name: "base";
- description { state: "default" 0.0;
- max: 2 99999;
- }
- }
- }
+group {name: "elm/separator/vertical/default";
+ inherit: "elm/separator/horizontal/default";
+ parts {
+ part {name: "base";
+ description {state: "default" 0.0;
+ max: 1 99999;
+ }
+ }
+ }
}
-