From 00244fe0b47d6cba65e198a1f80b8732f0c646b5 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Fri, 25 Mar 2011 23:07:33 -0500 Subject: [PATCH] Usability on zkwebui: * Implement light yellow background on focused field (just changing the default theme) --- .../theme/default/css/theme.css.dsp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/org.adempiere.ui.zk/theme/default/css/theme.css.dsp b/org.adempiere.ui.zk/theme/default/css/theme.css.dsp index 66c716f012..205ebde5c9 100644 --- a/org.adempiere.ui.zk/theme/default/css/theme.css.dsp +++ b/org.adempiere.ui.zk/theme/default/css/theme.css.dsp @@ -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; +}