diff options
author | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2009-05-27 13:23:48 +0000 |
---|---|---|
committer | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2009-05-27 13:23:48 +0000 |
commit | 9c72f5bcf8fb0dc46332478e66d5286b5ab3100d (patch) | |
tree | cb9e6cf854ebdf5bab7f267e74922bb673a59237 /WebContent/VAADIN/themes/reindeer/select/select.css | |
parent | 0d0b9d8fb1529f28369c71e77dbf6059ba2dd876 (diff) | |
download | vaadin-framework-9c72f5bcf8fb0dc46332478e66d5286b5ab3100d.tar.gz vaadin-framework-9c72f5bcf8fb0dc46332478e66d5286b5ab3100d.zip |
Fixed combobox styles for IE6 (adding an item icon broke the theme).
svn changeset:8033/svn branch:6.0
Diffstat (limited to 'WebContent/VAADIN/themes/reindeer/select/select.css')
-rw-r--r-- | WebContent/VAADIN/themes/reindeer/select/select.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/reindeer/select/select.css b/WebContent/VAADIN/themes/reindeer/select/select.css index 8034cc44f5..6a79cab10e 100644 --- a/WebContent/VAADIN/themes/reindeer/select/select.css +++ b/WebContent/VAADIN/themes/reindeer/select/select.css @@ -4,6 +4,9 @@ background-image: url(img/left.png); /** sprite-ref: verticals; sprite-margin-bottom: 1px */ padding-left: 2px; } +.v-ie6 .v-filterselect { + background-image: url(img/left-ie6.png); /** sprite-ref: verticals; sprite-margin-bottom: 1px */ +} .v-app .v-filterselect-input, .v-window .v-filterselect-input, .v-popupview-popup .v-filterselect-input { @@ -27,6 +30,9 @@ .v-filterselect-focus { background-image: url(img/left-focus.png); /** sprite-ref: verticals; sprite-margin-bottom: 1px */ } +.v-ie6 .v-filterselect-focus { + background-image: url(img/left-focus-ie6.png); /** sprite-ref: verticals; sprite-margin-bottom: 1px */ +} .v-filterselect-focus .v-filterselect-input { background-image: url(img/center-focus.png); /** sprite-ref: verticals; sprite-alignment: repeat */ } @@ -203,6 +209,9 @@ .black .v-filterselect { background-image: url(img/left-black.png); /** sprite-ref: black-verticals; sprite-margin-bottom: 1px */ } +.v-ie6 .black .v-filterselect { + background-image: url(img/left-black-ie6.png); /** sprite-ref: black-verticals; sprite-margin-bottom: 1px */ +} .v-app .black .v-filterselect-input, .v-window .black .v-filterselect-input, .v-window-black .v-filterselect-input, @@ -213,6 +222,9 @@ .black .v-filterselect-focus { background-image: url(img/left-black-focus.png); /** sprite-ref: black-verticals; sprite-margin-bottom: 1px */ } +.v-ie6 .black .v-filterselect-focus { + background-image: url(img/left-black-focus-ie6.png); /** sprite-ref: black-verticals; sprite-margin-bottom: 1px */ +} .black .v-filterselect-focus .v-filterselect-input { background-image: url(img/center-black-focus.png); /** sprite-ref: black-verticals; sprite-alignment: repeat; sprite-margin-bottom: 1px */ } |