Elm.Button: fix color class descriptions

Reviewers: cedric, jpeg

Reviewed By: jpeg

Differential Revision: https://phab.enlightenment.org/D4457
This commit is contained in:
Jee-Yong Um 2016-12-06 12:10:01 +09:00 committed by Jean-Philippe Andre
parent 24a6f31252
commit 967c7c7195
1 changed files with 7 additions and 7 deletions

View File

@ -92,27 +92,27 @@ color_classes {
// widgets
color_class { name: "button_bg";
color: 255 255 255 255;
desc: "Text of a button";
desc: "Background of a button";
}
color_class { name: "button_bg_pressed";
color: 255 255 255 255;
desc: "Text of a button";
desc: "Background of a pressed button";
}
color_class { name: "button_bg_disabled";
color: 255 255 255 255;
desc: "Text of a button";
desc: "Background of a disabled button";
}
color_class { name: "button_icon";
color: 255 255 255 255;
desc: "Text of a button";
desc: "Icon of a button";
}
color_class { name: "button_icon_pressed";
color: 255 255 255 255;
desc: "Text of a button";
desc: "Icon of a pressed button";
}
color_class { name: "button_icon_disabled";
color: 255 255 255 64;
desc: "Text of a button";
desc: "Icon of a disabled button";
}
color_class { name: "button_text";
color: FN_COL_DEFAULT;
@ -120,7 +120,7 @@ color_classes {
}
color_class { name: "button_text_pressed";
color: FN_COL_DEFAULT;
desc: "Text of a button";
desc: "Text of a pressed button";
}
color_class { name: "button_text_disabled";
color: FN_COL_DISABLE;