popup: apply popup color class

Summary:
Apply popup color class
 - popup bg
 - popup title bg
 - popup title text
 - popup text

Test Plan:
  1. change popup color class in colorclass.edc
  2. run elementary test
  3. check the color of popup

Reviewers: Hermet, kimcinoo, woohyun, raster

Differential Revision: https://phab.enlightenment.org/D3489

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
This commit is contained in:
taehyub 2016-01-04 14:49:11 -08:00 committed by Cedric BAIL
parent b9672e6d2a
commit af4bce7a45
2 changed files with 21 additions and 4 deletions

View File

@ -300,6 +300,22 @@ color_classes {
color: FN_COL_HIGHLIGHT;
desc: "Text of an active hoverselector item";
}
color_class { name: "popup_bg";
color: 0 0 0 0;
desc: "Color of popup background";
}
color_class { name: "popup_title_bg";
color: 0 0 0 0;
desc: "Color of popup title background";
}
color_class { name: "popup_title_text";
color: 255 255 255 255;
desc: "Text color of popup title text";
}
color_class { name: "popup_text";
color: 255 255 255 255;
desc: "Text color of popup text";
}
// modules
color_class { name: "module_label";

View File

@ -139,7 +139,7 @@ group { name: "elm/label/base/popup/default";
alias: "elm/label/base/popup/transparent";
styles {
style { name: "popup_desc_style";
base: "font="FN" font_size=10 text_class=label align=center color=#fff style=shadow,bottom shadow_color=#00000080 wrap=mixed";
base: "font="FN" font_size=10 text_class=label align=center color=#fff color_class=popup_text style=shadow,bottom shadow_color=#00000080 wrap=mixed";
tag: "br" "\n";
tag: "hilight" "+ font="FNBD" text_class=label_light";
tag: "b" "+ font="FNBD" text_class=label_light";
@ -175,7 +175,7 @@ group { name: "elm/popup/base/default";
alias: "elm/popup/base/transparent";
styles {
style { name: "popup_title_style";
base: "font="FNBD" font_size=10 text_class=label align=center color=#fff style=shadow,bottom shadow_color=#00000080 wrap=mixed";
base: "font="FNBD" font_size=10 text_class=label align=center color=#fff color_class=popup_title_text style=shadow,bottom shadow_color=#00000080 wrap=mixed";
tag: "br" "\n";
tag: "hilight" "+ font="FNBD" text_class=label_light";
tag: "b" "+ font="FNBD" text_class=label_light";
@ -184,10 +184,11 @@ group { name: "elm/popup/base/default";
}
}
parts {
part { name: "base"; type: SPACER;
part { name: "base"; type: RECT;
scale: 1;
description { state: "default" 0.0;
min: 240 0;
color_class: "popup_bg";
}
}
part { name: "elm.bg.title"; type: RECT;
@ -195,7 +196,7 @@ group { name: "elm/popup/base/default";
fixed: 1 1;
rel1.to: "elm.text.title";
rel2.to: "elm.text.title";
visible: 0;
color_class: "popup_title_bg";
}
}
part { name: "elm.text.title"; type: TEXTBLOCK;