summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
+ }
+ }
+ }
+}