summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/liferay/panel
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-11-23 19:43:19 +0200
committerArtur Signell <artur@vaadin.com>2012-11-23 20:44:25 +0200
commitf60f4bffa65f0031c2b094e7d9200c3df20c69ea (patch)
tree477b67f581087f415a94cf7cea8e41d418d9e564 /WebContent/VAADIN/themes/liferay/panel
parentd553c3eca98e574d8d6a0b1f2a0276093f53b55e (diff)
downloadvaadin-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/liferay/panel')
-rw-r--r--WebContent/VAADIN/themes/liferay/panel/panel.scss12
1 files changed, 6 insertions, 6 deletions
diff --git a/WebContent/VAADIN/themes/liferay/panel/panel.scss b/WebContent/VAADIN/themes/liferay/panel/panel.scss
index 79172b2474..cb65560a74 100644
--- a/WebContent/VAADIN/themes/liferay/panel/panel.scss
+++ b/WebContent/VAADIN/themes/liferay/panel/panel.scss
@@ -61,11 +61,11 @@
}
/* IE specific rules */
-.v-ie .v-panel {
+.v-ie & .v-panel {
background: transparent;
}
-.v-ie .v-panel-caption,
-.v-ie .v-panel-nocaption {
+.v-ie & .v-panel-caption,
+.v-ie & .v-panel-nocaption {
border: 1px solid #999;
border-bottom: none;
background: #c0c2c5 url(/html/themes/classic/images/application/panel_header_bg.png) repeat-x 0 0;
@@ -73,13 +73,13 @@
padding-left: 5px;
}
-.v-ie .v-panel-caption-light,
-.v-ie .v-panel-nocaption-light {
+.v-ie & .v-panel-caption-light,
+.v-ie & .v-panel-nocaption-light {
border: none;
background: transparent;
}
-.v-ie .v-panel-caption-light {
+.v-ie & .v-panel-caption-light {
border-bottom: 1px solid #999;
}