IDEMPIERE-292 Zk: use #333 instead of #000 ( black ) for text and label

This commit is contained in:
Heng Sin Low 2012-06-07 01:38:43 +08:00
parent b94843f98e
commit b925e6e958
2 changed files with 9 additions and 2 deletions

View File

@ -572,6 +572,6 @@ public abstract class WEditor implements EventListener<Event>, PropertyChangeLis
}
private static final String STYLE_ZOOMABLE_LABEL = "cursor: pointer; text-decoration: underline;";
private static final String STYLE_NORMAL_LABEL = "color: black;";
private static final String STYLE_NORMAL_LABEL = "color: #333;";
private static final String STYLE_EMPTY_MANDATORY_LABEL = "color: red;";
}

View File

@ -7,6 +7,7 @@ html,body {
height: 100%;
width: 100%;
background-color: #D4E3F4;
color: #333;
overflow: hidden;
}
@ -116,7 +117,7 @@ html,body {
.menu-href {
font-size: 11px;
font-weight: normal;
color: black !important;
color: #333 !important;
text-decoration: none !important;
}
@ -540,3 +541,9 @@ img.z-group-img-close {
.z-tab-hm-close {
padding-right:18px;
}
<%-- set color for text and label --%>
.z-tab-seld .z-tab-text, .z-tab .z-tab-text, div.z-treefooter-cnt, div.z-treecell-cnt, div.z-treecol-cnt,
.z-label, .z-toolbarbutton-cnt, tr.z-treerow, tr.z-treerow a, tr.z-treerow a:visited {
color: #333;
}