This commit is contained in:
parent
b94843f98e
commit
b925e6e958
|
@ -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_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;";
|
private static final String STYLE_EMPTY_MANDATORY_LABEL = "color: red;";
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,6 +7,7 @@ html,body {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background-color: #D4E3F4;
|
background-color: #D4E3F4;
|
||||||
|
color: #333;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -116,7 +117,7 @@ html,body {
|
||||||
.menu-href {
|
.menu-href {
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
color: black !important;
|
color: #333 !important;
|
||||||
text-decoration: none !important;
|
text-decoration: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -540,3 +541,9 @@ img.z-group-img-close {
|
||||||
.z-tab-hm-close {
|
.z-tab-hm-close {
|
||||||
padding-right:18px;
|
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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue