diff options
author | Sauli Tähkäpää <sauli@vaadin.com> | 2014-12-11 23:12:12 +0200 |
---|---|---|
committer | Sauli Tähkäpää <sauli@vaadin.com> | 2015-02-02 10:46:53 +0200 |
commit | c76723db8dcbc15e6819b7b02c49c7293240fee4 (patch) | |
tree | 9a04369348ea35230cc65a3dd7a879b28c2ec0c6 /WebContent | |
parent | f6dda35aa459b6b128c435248ba0e1f28356728b (diff) | |
download | vaadin-framework-c76723db8dcbc15e6819b7b02c49c7293240fee4.tar.gz vaadin-framework-c76723db8dcbc15e6819b7b02c49c7293240fee4.zip |
Fix gradient path for notifications in Chameleon. (#15351)
Change-Id: Ie1e2726613033ad321e15f7f58e098080d4d9a5f
Diffstat (limited to 'WebContent')
-rw-r--r-- | WebContent/VAADIN/themes/chameleon/components/notification/notification.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebContent/VAADIN/themes/chameleon/components/notification/notification.scss b/WebContent/VAADIN/themes/chameleon/components/notification/notification.scss index 85fbb3295f..c1a8d119c7 100644 --- a/WebContent/VAADIN/themes/chameleon/components/notification/notification.scss +++ b/WebContent/VAADIN/themes/chameleon/components/notification/notification.scss @@ -9,8 +9,8 @@ div.#{$primaryStyleName} { -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; + 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 { |