change message colors to white.

previous color was eye catchable but not good to read.
This commit is contained in:
Hermet Park 2016-02-26 17:48:13 +09:00
parent 0a3b314384
commit db339cfaee
1 changed files with 6 additions and 6 deletions

View File

@ -233,6 +233,7 @@ group { name: "fileselector_layout";
} }
part { name: "elm.text.msg"; part { name: "elm.text.msg";
type: TEXT; type: TEXT;
effect: SHADOW BOTTOM;
scale: 1; scale: 1;
clip_to: "clipper"; clip_to: "clipper";
description { state: "default" 0.0; description { state: "default" 0.0;
@ -244,13 +245,12 @@ group { name: "fileselector_layout";
font: FN; font: FN;
size: 11; size: 11;
align: 0.5 1; align: 0.5 1;
text: "adfasdfadsf";
} }
color: 0 0 0 0; color: COL_NM_TRANS;
} }
description { state: "show" 0.0; description { state: "show" 0.0;
inherit: "default" 0.0; inherit: "default" 0.0;
color: 255 0 0 255; color: COL_NM;
} }
} }
part { name: "event_blocker"; part { name: "event_blocker";
@ -2569,7 +2569,7 @@ group { name: "statusbar_layout";
part { name: "elm.text.info_msg"; part { name: "elm.text.info_msg";
type: TEXT; type: TEXT;
scale: 1; scale: 1;
effect: GLOW; effect: SHADOW BOTTOM;
nomouse; nomouse;
description { state: "default" 0.0; description { state: "default" 0.0;
align: 0 0.5; align: 0 0.5;
@ -2580,11 +2580,11 @@ group { name: "statusbar_layout";
size: 11; size: 11;
align: 0 0.5; align: 0 0.5;
} }
color: COL_HI_TRANS; color: COL_NM_TRANS;
} }
description { state: "show" 0.0; description { state: "show" 0.0;
inherit: "default" 0.0; inherit: "default" 0.0;
color: COL_HI; color: COL_NM;
} }
} }
program { name: "info_msg_show"; program { name: "info_msg_show";