From 81645ab3566b34d8826f6b0e89938f00c83c9f4f Mon Sep 17 00:00:00 2001 From: Dmitrii Rogozin Date: Wed, 16 Jul 2014 17:20:28 +0300 Subject: [PATCH] Fix background color of Notification in chameleon theme (#14246) Change-Id: Ie561a3ef95fcc15e357d1edb65b45f596683e7e4 --- .../themes/chameleon/components/notification/notification.scss | 2 ++ 1 file changed, 2 insertions(+) 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; } -- 2.39.5