From: Matti Tahvonen Date: Thu, 15 Jan 2009 13:54:53 +0000 (+0000) Subject: unified combobox read only with textfields (simply show value) X-Git-Tag: 6.7.0.beta1~3325 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e1b4b77f61e7c71dfff6692ff7650886e976d937;p=vaadin-framework.git unified combobox read only with textfields (simply show value) svn changeset:6559/svn branch:trunk --- diff --git a/WebContent/ITMILL/themes/default/select/select.css b/WebContent/ITMILL/themes/default/select/select.css index 07b9209e08..5364c1d0f7 100644 --- a/WebContent/ITMILL/themes/default/select/select.css +++ b/WebContent/ITMILL/themes/default/select/select.css @@ -112,6 +112,15 @@ background-position: top left; } +.i-filterselect.i-readonly .i-filterselect-button { + display: none; +} + +.i-filterselect.i-readonly .i-filterselect-input { + background: transparent; + color: black; +} + .i-filterselect-suggestpopup { background: #f6f7f7; border: 1px solid #b6bbbc; diff --git a/WebContent/ITMILL/themes/default/styles.css b/WebContent/ITMILL/themes/default/styles.css index 9b72dd829c..19468d0eea 100644 --- a/WebContent/ITMILL/themes/default/styles.css +++ b/WebContent/ITMILL/themes/default/styles.css @@ -1333,6 +1333,15 @@ input.i-modified, background-position: top left; } +.i-filterselect.i-readonly .i-filterselect-button { + display: none; +} + +.i-filterselect.i-readonly .i-filterselect-input { + background: transparent; + color: black; +} + .i-filterselect-suggestpopup { background: #f6f7f7; border: 1px solid #b6bbbc;