Usability on zkwebui:

* Implement light yellow background on focused field (just changing the default theme)
This commit is contained in:
Carlos Ruiz 2011-03-25 23:07:33 -05:00
parent a2a86c75ca
commit 00244fe0b4
1 changed files with 14 additions and 0 deletions

View File

@ -440,3 +440,17 @@ div.z-vfiletree-body td.menu-tree-cell {
cursor: pointer; padding: 0 2px;
font-size: ${fontSizeM}; font-weight: normal; overflow: visible;
}
<%-- FOCUSED FIELD in different color --%>
.z-textbox-focus, .z-textbox-focus input,
.z-decimalbox-focus, .z-decimalbox-focus input,
.z-intbox-focus, .z-intbox-focus input,
.z-longbox-focus, .z-longbox-focus input,
.z-doublebox-focus, .z-doublebox-focus input,
.z-combobox-focus .z-combobox-inp,
.z-checkbox-focus .z-checkbox-inp,
.z-datebox-focus .z-datebox-inp,
.z-timebox-focus .z-timebox-inp {
background: #FFFFCC;
}