diff options
author | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2009-07-07 06:51:22 +0000 |
---|---|---|
committer | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2009-07-07 06:51:22 +0000 |
commit | eade8d33602f3b2174c7135cee3d5f3403fff601 (patch) | |
tree | 576d3b58d218ea4203827772cafad23c65be801c /WebContent/VAADIN/themes/reindeer/layouts | |
parent | 0b31d84fede9c1482c6ac9d1cb2e7bb4bbc1715c (diff) | |
download | vaadin-framework-eade8d33602f3b2174c7135cee3d5f3403fff601.tar.gz vaadin-framework-eade8d33602f3b2174c7135cee3d5f3403fff601.zip |
Modified Reindeer black styles to be a bit more lighter, easier to see textfields and comboboxes on low contrast displays.
Fixes blue and black layout styles for IE6 (previously had a child selector in layouts.css which caused IE6 fail the whole selector).
svn changeset:8336/svn branch:6.0
Diffstat (limited to 'WebContent/VAADIN/themes/reindeer/layouts')
-rw-r--r-- | WebContent/VAADIN/themes/reindeer/layouts/layouts.css | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/WebContent/VAADIN/themes/reindeer/layouts/layouts.css b/WebContent/VAADIN/themes/reindeer/layouts/layouts.css index 7ac88f92a1..2c39ffcf3a 100644 --- a/WebContent/VAADIN/themes/reindeer/layouts/layouts.css +++ b/WebContent/VAADIN/themes/reindeer/layouts/layouts.css @@ -27,14 +27,18 @@ /* Blue background */ .v-verticallayout-blue, .v-horizontallayout-blue, -.v-orderedlayout-blue, +.v-orderedlayout-blue { + background-color: #bcd3de; +} .v-panel-content > div.blue { background-color: #bcd3de; } /* Black background */ .v-verticallayout-black, .v-horizontallayout-black, -.v-orderedlayout-black, +.v-orderedlayout-black { + background-color: #1e2022; +} .v-panel-content > div.black { - background: #16181a url(img/black-bg.png) repeat-x; + background-color: #1e2022; }
\ No newline at end of file |