summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShinwoo Kim <cinoo.kim@samsung.com>2018-04-12 11:58:35 +0900
committerShinwoo Kim <cinoo.kim@samsung.com>2018-04-12 12:14:53 +0900
commit91d44c6d2406f7a0425a0e337aa6c7bcf907177f (patch)
tree1d0ff770340beea831d030b6f1ed1beaf20b81a8
parentad58b1163e72d0130d0a35847f8f345c5ce27098 (diff)
downloadefl-theme-tizen-mobile-91d44c6d2406f7a0425a0e337aa6c7bcf907177f.tar.gz
efl-theme-tizen-mobile-91d44c6d2406f7a0425a0e337aa6c7bcf907177f.tar.bz2
efl-theme-tizen-mobile-91d44c6d2406f7a0425a0e337aa6c7bcf907177f.zip
a11y_highlight: add to mobile theme
The a11y_highlight existed in default theme. But the default theme was disabled by following commit. 0a7cde1 package: disable default theme This patch is adding a11y_highlight to mobile (efl-theme-tizen-mobile) theme. Change-Id: I863ca98920ec5d0172a0234b2e81480babb333cd
-rw-r--r--mobile/efl-theme-tizen-mobile.edc1
-rw-r--r--mobile/widgets/a11y_highlight.edc30
2 files changed, 31 insertions, 0 deletions
diff --git a/mobile/efl-theme-tizen-mobile.edc b/mobile/efl-theme-tizen-mobile.edc
index a2301dc1..00b19c81 100644
--- a/mobile/efl-theme-tizen-mobile.edc
+++ b/mobile/efl-theme-tizen-mobile.edc
@@ -84,6 +84,7 @@ collections {
#include "color_classes.edc"
+#include "widgets/a11y_highlight.edc"
#include "widgets/bg.edc"
#include "widgets/button.edc"
#include "widgets/calendar.edc"
diff --git a/mobile/widgets/a11y_highlight.edc b/mobile/widgets/a11y_highlight.edc
new file mode 100644
index 00000000..9eec9717
--- /dev/null
+++ b/mobile/widgets/a11y_highlight.edc
@@ -0,0 +1,30 @@
+group { name: "elm/accessibility_highlight/top/default";
+ images.image: "focus_ef.#.png" COMP;
+ parts {
+ part { name: "base";
+ type: RECT;
+ repeat_events: 1;
+ description { state: "default" 0.0;
+ rel1.relative: 0.0 0.0;
+ rel2.relative: 1.0 1.0;
+ visible: 0;
+ }
+ }
+ part { name: "glow";
+ type: IMAGE;
+ mouse_events: 0;
+ repeat_events: 1;
+ ignore_flags: ON_HOLD;
+ scale: 1;
+ description { state: "default" 0.0;
+ image.normal: "focus_ef.#.png";
+ color: 0 218 230 100;
+ fill.smooth: 0;
+ }
+ description { state: "show" 0.0;
+ inherit: "default" 0.0;
+ visible: 1;
+ }
+ }
+ }
+}