summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/chameleon
diff options
context:
space:
mode:
authorAMahdy AbdElAziz <amahdy7@gmail.com>2014-12-23 16:52:22 +0200
committerLeif Åstrand <leif@vaadin.com>2014-12-30 17:08:18 +0000
commitfea60eaea2c791766be9f17ff2900739b32bf576 (patch)
tree42e6423f50a40f6837a4e71e543af1061b1a5b91 /WebContent/VAADIN/themes/chameleon
parent7ca1b0d1a8aa29a9ab6d9aea41cc8b7c5c78e6b0 (diff)
downloadvaadin-framework-fea60eaea2c791766be9f17ff2900739b32bf576.tar.gz
vaadin-framework-fea60eaea2c791766be9f17ff2900739b32bf576.zip
Fix for Wrong background color in a Window in IE8 (#15322)
Change-Id: Ie25c7142bc111829be829f4ba98ed639ad1f5126
Diffstat (limited to 'WebContent/VAADIN/themes/chameleon')
-rw-r--r--WebContent/VAADIN/themes/chameleon/common/common.scss11
1 files changed, 8 insertions, 3 deletions
diff --git a/WebContent/VAADIN/themes/chameleon/common/common.scss b/WebContent/VAADIN/themes/chameleon/common/common.scss
index 7bee2f529c..82e0810bc2 100644
--- a/WebContent/VAADIN/themes/chameleon/common/common.scss
+++ b/WebContent/VAADIN/themes/chameleon/common/common.scss
@@ -34,7 +34,9 @@ $chameleon-line-height: 1.4;
}
.v-sa & .v-tooltip {
- outline: 1px solid rgba(0,0,0,.2);
+ outline-color: #000000; /* Fallback for browsers that does not support RGBA such as IE8 */
+ outline-color: rgba(0,0,0,.2);
+ outline: 1px solid;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border: none;
@@ -92,6 +94,7 @@ $chameleon-line-height: 1.4;
.v-Notification,
.v-menubar-submenu {
border: 1px solid #adadad;
+ border-color: #000000; /* Fallback for browsers that does not support RGBA such as IE8 */
border-color: rgba(0,0,0,.4);
border-radius: 4px;
-webkit-border-radius: 4px;
@@ -104,8 +107,10 @@ $chameleon-line-height: 1.4;
.v-datefield-popup,
.v-contextmenu,
.v-menubar-submenu{
- background: rgba(232,232,232,.90) url(../img/grad-light-top.png) repeat-x;
- }
+ background: #e8e8e8; /* Fallback for browsers that does not support RGBA such as IE8 */
+ background: rgba(232,232,232,.90);
+ background-image: url(../img/grad-light-top.png) repeat-x;
+ }
.v-filterselect-suggestpopup,
.v-contextmenu,
.v-menubar-submenu {