summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/chameleon
diff options
context:
space:
mode:
authorDmitrii Rogozin <dmitrii@vaadin.com>2014-07-16 17:20:28 +0300
committerDmitrii Rogozin <dmitrii@vaadin.com>2014-07-24 09:39:01 +0000
commit81645ab3566b34d8826f6b0e89938f00c83c9f4f (patch)
tree610838b0021ed06e958a131ed59944ebdd717847 /WebContent/VAADIN/themes/chameleon
parent4e9139fce2e0ce1ebc2b29b6842c940d90f7df31 (diff)
downloadvaadin-framework-81645ab3566b34d8826f6b0e89938f00c83c9f4f.tar.gz
vaadin-framework-81645ab3566b34d8826f6b0e89938f00c83c9f4f.zip
Fix background color of Notification in chameleon theme (#14246)
Change-Id: Ie561a3ef95fcc15e357d1edb65b45f596683e7e4
Diffstat (limited to 'WebContent/VAADIN/themes/chameleon')
-rw-r--r--WebContent/VAADIN/themes/chameleon/components/notification/notification.scss2
1 files changed, 2 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/chameleon/components/notification/notification.scss b/WebContent/VAADIN/themes/chameleon/components/notification/notification.scss
index 783e4bcc1f..85fbb3295f 100644
--- a/WebContent/VAADIN/themes/chameleon/components/notification/notification.scss
+++ b/WebContent/VAADIN/themes/chameleon/components/notification/notification.scss
@@ -8,6 +8,8 @@ div.#{$primaryStyleName} {
-webkit-box-shadow: 0 2px 5px rgba(0,0,0,.7);
-moz-box-shadow: 0 2px 5px rgba(0,0,0,.7);
box-shadow: 0 2px 5px rgba(0,0,0,.7);
+ //IE8 does not support rgba, using just rgb
+ background:rgb(255,255,255) url(../img/grad-light-top.png) repeat-x;
background:rgba(255,255,255,.90) url(../img/grad-light-top.png) repeat-x;
}