diff options
author | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2010-04-08 13:30:32 +0000 |
---|---|---|
committer | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2010-04-08 13:30:32 +0000 |
commit | 041f32f953c53c166e0c996cf653b10bef62500f (patch) | |
tree | dab918e3be49ce662d008634561f51d79eb00467 /WebContent/VAADIN/themes/reindeer/splitpanel | |
parent | 0c1319e305b1ead57e0391dae95257552c6baf5d (diff) | |
download | vaadin-framework-041f32f953c53c166e0c996cf653b10bef62500f.tar.gz vaadin-framework-041f32f953c53c166e0c996cf653b10bef62500f.zip |
Loads of small fixes to Base and Reindeer themes: contains bugfixes for issues found during developing the new Reindeer theme demo, plus a couple of new styles for Reindeer.
svn changeset:12389/svn branch:6.3
Diffstat (limited to 'WebContent/VAADIN/themes/reindeer/splitpanel')
-rw-r--r-- | WebContent/VAADIN/themes/reindeer/splitpanel/splitpanel.css | 37 |
1 files changed, 21 insertions, 16 deletions
diff --git a/WebContent/VAADIN/themes/reindeer/splitpanel/splitpanel.css b/WebContent/VAADIN/themes/reindeer/splitpanel/splitpanel.css index 112601d267..74b06ace2d 100644 --- a/WebContent/VAADIN/themes/reindeer/splitpanel/splitpanel.css +++ b/WebContent/VAADIN/themes/reindeer/splitpanel/splitpanel.css @@ -25,36 +25,41 @@ background-image: url(img/ver-handle.png); /** sprite-ref: verticals; sprite-alignment: center */ } + +/* Splitpanels on blue background */ +.blue .v-splitpanel-hsplitter-small, +.blue .v-splitpanel-hsplitter-small-locked { + background: #7c8a91; +} + +/* Splitpanels on black background */ +.black .v-splitpanel-hsplitter-small, +.black .v-splitpanel-hsplitter-small-locked { + background: #4e5253; +} + /* Small style */ .v-splitpanel-hsplitter-small, -.v-splitpanel-hsplitter-small-locked { +.v-splitpanel-hsplitter-small-locked, +.white .v-splitpanel-hsplitter-small, +.white .v-splitpanel-hsplitter-small-locked { width: 1px; background: #949698; } .v-splitpanel-vsplitter-small, -.v-splitpanel-vsplitter-small-locked { +.v-splitpanel-vsplitter-small-locked, +.white .v-splitpanel-vsplitter-small, +.white .v-splitpanel-vsplitter-small-locked { height: 1px; background: #949698; } .v-splitpanel-hsplitter-small div { - width: 3px; + width: 5px; margin-left: -2px; background: transparent; } .v-splitpanel-vsplitter-small div { - height: 3px; + height: 5px; margin-top: -2px; background: transparent; -} - -/* Splitpanels on blue background */ -.blue .v-splitpanel-hsplitter-small, -.blue .v-splitpanel-hsplitter-small-locked { - background: #7c8a91; -} - -/* Splitpanels on black background */ -.black .v-splitpanel-hsplitter-small, -.black .v-splitpanel-hsplitter-small-locked { - background: #4e5253; }
\ No newline at end of file |