From 4a20fff2901a0d2cdd19c501534a9d1466ac551a Mon Sep 17 00:00:00 2001 From: wagnerads Date: Mon, 22 Feb 2016 11:50:51 -0300 Subject: [PATCH] Update gritter.css.scss Fix Wrong url in scss #57 --- app/assets/stylesheets/gritter.css.scss | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/app/assets/stylesheets/gritter.css.scss b/app/assets/stylesheets/gritter.css.scss index 87c3108..c0171bc 100755 --- a/app/assets/stylesheets/gritter.css.scss +++ b/app/assets/stylesheets/gritter.css.scss @@ -28,18 +28,18 @@ .gritter-item-wrapper { position:relative; margin:0 0 10px 0; - background:url(asset-url('ie-spacer.gif')); // ie7/8 fix + background:asset-url('ie-spacer.gif'); // ie7/8 fix } .gritter-top { - background:url(asset-url('gritter.png')) no-repeat left -30px; + background:asset-url('gritter.png') no-repeat left -30px; height:10px; } .hover .gritter-top { background-position:right -30px; } .gritter-bottom { - background:url(asset-url('gritter.png')) no-repeat left bottom; + background:asset-url('gritter.png') no-repeat left bottom; height:8px; margin:0; } @@ -56,7 +56,7 @@ filter:inherit; // ie8 fix &.gritter-css2 { - background:url(asset-url('gritter.png')) no-repeat left -40px; + background:asset-url('gritter.png') no-repeat left -40px; } &.gritter-css3 { background:rgba(0, 0, 0, 0.8); @@ -91,10 +91,10 @@ filter:inherit; // ie8 fix } .gritter-css2 .gritter-close { - background:url(asset-url('gritter.png')) no-repeat left top; + background:asset-url('gritter.png') no-repeat left top; } .gritter-css3 .gritter-close { - background:url(asset-url('gritter-close.png')) no-repeat; + background:asset-url('gritter-close.png') no-repeat; } .gritter-title { @@ -116,4 +116,4 @@ .gritter-with-image { width:220px; float:right; -} \ No newline at end of file +}