diff options
author | Matti Tahvonen <matti.tahvonen@itmill.com> | 2009-01-15 13:54:53 +0000 |
---|---|---|
committer | Matti Tahvonen <matti.tahvonen@itmill.com> | 2009-01-15 13:54:53 +0000 |
commit | e1b4b77f61e7c71dfff6692ff7650886e976d937 (patch) | |
tree | 0687a1546c59322f4c65bdfdcd5624c32e72f2af /WebContent/ITMILL/themes | |
parent | 52b96244d3b6bb30f325e9481421b8018d357cb1 (diff) | |
download | vaadin-framework-e1b4b77f61e7c71dfff6692ff7650886e976d937.tar.gz vaadin-framework-e1b4b77f61e7c71dfff6692ff7650886e976d937.zip |
unified combobox read only with textfields (simply show value)
svn changeset:6559/svn branch:trunk
Diffstat (limited to 'WebContent/ITMILL/themes')
-rw-r--r-- | WebContent/ITMILL/themes/default/select/select.css | 9 | ||||
-rw-r--r-- | WebContent/ITMILL/themes/default/styles.css | 9 |
2 files changed, 18 insertions, 0 deletions
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; |