diff options
author | AMahdy AbdElAziz <amahdy7@gmail.com> | 2014-12-23 16:52:22 +0200 |
---|---|---|
committer | Sauli Tähkäpää <sauli@vaadin.com> | 2015-01-21 11:04:18 +0200 |
commit | cbab40eb385a835cb9f991ea620f0bbc699ac860 (patch) | |
tree | 6842bad893dd5ea58b8f69bf6220059ad2fd6cf7 /WebContent/VAADIN | |
parent | c5d3b8b35b64c92be11f7b0fb964b64c75db79d9 (diff) | |
download | vaadin-framework-cbab40eb385a835cb9f991ea620f0bbc699ac860.tar.gz vaadin-framework-cbab40eb385a835cb9f991ea620f0bbc699ac860.zip |
Fix for Wrong background color in a Window in IE8 (#15322)
Change-Id: Ie25c7142bc111829be829f4ba98ed639ad1f5126
Diffstat (limited to 'WebContent/VAADIN')
-rw-r--r-- | WebContent/VAADIN/themes/chameleon/common/common.scss | 11 |
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 { |