diff options
author | Dmitrii Rogozin <dmitrii@vaadin.com> | 2014-07-16 17:20:28 +0300 |
---|---|---|
committer | Bogdan Udrescu <bogdan@vaadin.com> | 2014-07-29 17:24:04 +0300 |
commit | 13eb3732b96561831cdee96740064ab8d4ddd08c (patch) | |
tree | e0ebd04386f7604dfb028e8eeb76fca906bd9b1b | |
parent | aa909992559989e24145bf2e3e6d58b95529beb5 (diff) | |
download | vaadin-framework-13eb3732b96561831cdee96740064ab8d4ddd08c.tar.gz vaadin-framework-13eb3732b96561831cdee96740064ab8d4ddd08c.zip |
Fix background color of Notification in chameleon theme (#14246)
Change-Id: Ie561a3ef95fcc15e357d1edb65b45f596683e7e4
Conflicts:
WebContent/VAADIN/themes/chameleon/components/notification/notification.scss
-rw-r--r-- | WebContent/VAADIN/themes/chameleon/components/notification/notification.scss | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/chameleon/components/notification/notification.scss b/WebContent/VAADIN/themes/chameleon/components/notification/notification.scss index fbf78d40c4..85fbb3295f 100644 --- a/WebContent/VAADIN/themes/chameleon/components/notification/notification.scss +++ b/WebContent/VAADIN/themes/chameleon/components/notification/notification.scss @@ -8,6 +8,9 @@ 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; } .#{$primaryStyleName} p { |