diff options
author | Artur Signell <artur@vaadin.com> | 2012-11-23 19:43:19 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-11-23 20:44:25 +0200 |
commit | f60f4bffa65f0031c2b094e7d9200c3df20c69ea (patch) | |
tree | 477b67f581087f415a94cf7cea8e41d418d9e564 /WebContent/VAADIN/themes/runo/tabsheet | |
parent | d553c3eca98e574d8d6a0b1f2a0276093f53b55e (diff) | |
download | vaadin-framework-f60f4bffa65f0031c2b094e7d9200c3df20c69ea.tar.gz vaadin-framework-f60f4bffa65f0031c2b094e7d9200c3df20c69ea.zip |
Fixed browser specific theme selectors (#10362)
Browser specific class names are set on the body element and the theme class name is inside body. Theme selectors must therefore be of type ".v-ie & "
Change-Id: I1893946ed9b5441a6977945a757a85ae87c07ce8
Diffstat (limited to 'WebContent/VAADIN/themes/runo/tabsheet')
-rw-r--r-- | WebContent/VAADIN/themes/runo/tabsheet/tabsheet.scss | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/WebContent/VAADIN/themes/runo/tabsheet/tabsheet.scss b/WebContent/VAADIN/themes/runo/tabsheet/tabsheet.scss index ec6bdd5b0f..6ed8585547 100644 --- a/WebContent/VAADIN/themes/runo/tabsheet/tabsheet.scss +++ b/WebContent/VAADIN/themes/runo/tabsheet/tabsheet.scss @@ -134,17 +134,17 @@ padding-top: 12px; }*/ /* IE specific styles */ -.v-ie .v-tabsheet-content { +.v-ie & .v-tabsheet-content { border-bottom: none; } -.v-ie .v-tabsheet-deco { +.v-ie & .v-tabsheet-deco { height: 1px; background: #babfc0; overflow: hidden; margin: 0; } -.v-ie8 .v-tabsheet-deco, -.v-ie9 .v-tabsheet-deco { +.v-ie8 & .v-tabsheet-deco, +.v-ie9 & .v-tabsheet-deco { width: 100%; } /* Light-style */ @@ -250,7 +250,7 @@ margin-left: -3px; padding-left: 3px; }*/ -.v-ie .v-tabsheet-deco-light { +.v-ie & .v-tabsheet-deco-light { height: 0; } |