From: Sanghyeon Lee Date: Thu, 4 Jul 2013 07:33:27 +0000 (+0900) Subject: [Genlist] change Pop Up style bottom line X-Git-Tag: submit/tizen/20131004.114939~30 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fefl-theme-tizen.git;a=commitdiff_plain;h=2a66d25783d0d549f08fd6359d936b58d2da24b3 [Genlist] change Pop Up style bottom line --- diff --git a/themes/inc/tizen-dark-inc.edc b/themes/inc/tizen-dark-inc.edc index e78a5b4..c3cbdb4 100755 --- a/themes/inc/tizen-dark-inc.edc +++ b/themes/inc/tizen-dark-inc.edc @@ -228,6 +228,8 @@ // List bg color #define GENLIST_LIST_BG_POPUP_COLOR 29 38 60 255 +#define GENLIST_LIST_LINE1_POPUP_COLOR 0 0 0 0 +#define GENLIST_LIST_LINE2_POPUP_COLOR 255 255 255 63 #define GENLIST_LIST_BG_COLOR 0 0 0 255 #define GENLIST_LIST_PRESS_COLOR 43 58 175 255 #define GENLIST_LIST_DIM_COLOR 0 0 0 255 diff --git a/themes/inc/tizen-light-inc.edc b/themes/inc/tizen-light-inc.edc index 28b59c0..0f6ec93 100755 --- a/themes/inc/tizen-light-inc.edc +++ b/themes/inc/tizen-light-inc.edc @@ -228,6 +228,8 @@ // List bg color #define GENLIST_LIST_BG_POPUP_COLOR 248 246 239 255 +#define GENLIST_LIST_LINE1_POPUP_COLOR 211 209 203 255 +#define GENLIST_LIST_LINE2_POPUP_COLOR 250 250 250 255 #define GENLIST_LIST_BG_COLOR 248 246 239 255 #define GENLIST_LIST_PRESS_COLOR 87 135 194 255 #define GENLIST_LIST_DIM_COLOR 248 246 239 255 diff --git a/themes/widgets/genlist/genlist_macro.edc b/themes/widgets/genlist/genlist_macro.edc index b965659..fe79d89 100755 --- a/themes/widgets/genlist/genlist_macro.edc +++ b/themes/widgets/genlist/genlist_macro.edc @@ -3661,5 +3661,21 @@ color: GENLIST_LIST_BG_POPUP_COLOR; \ } \ ) \ + GENLIST_PART_RECT("bottom_line", \ + description { state: "default" 0.0; \ + color: GENLIST_LIST_LINE1_POPUP_COLOR; \ + } \ + description { state: "disabled" 0.0; \ + color: GENLIST_LIST_LINE1_POPUP_COLOR; \ + } \ + ) \ + GENLIST_PART_RECT("bottom_line2", \ + description { state: "default" 0.0; \ + color: GENLIST_LIST_LINE2_POPUP_COLOR; \ + } \ + description { state: "disabled" 0.0; \ + color: GENLIST_LIST_LINE2_POPUP_COLOR; \ + } \ + ) \ } \ }