Commit 3fe830a8 by caesar2164

Merge pull request #98 from edx/giulio/fix-image-urls

move url() wrapper into SASS variable
parents 2c294816 7104937f
...@@ -132,7 +132,7 @@ $footer_margin: ($baseline/4) 0 ($baseline*1.5) 0; ...@@ -132,7 +132,7 @@ $footer_margin: ($baseline/4) 0 ($baseline*1.5) 0;
//----------------- //-----------------
$homepage-bg-image: '../images/homepage-bg.jpg'; $homepage-bg-image: '../images/homepage-bg.jpg';
$login-banner-image: '../images/bg-banner-login.png'; $login-banner-image: url(../images/bg-banner-login.png);
$register-banner-image: '../images/bg-banner-register.png'; $register-banner-image: url(../images/bg-banner-register.png);
$video-thumb-url: '../images/courses/video-thumb.jpg'; $video-thumb-url: '../images/courses/video-thumb.jpg';
...@@ -493,7 +493,7 @@ ...@@ -493,7 +493,7 @@
header { header {
height: 120px; height: 120px;
border-bottom: 1px solid $m-gray; border-bottom: 1px solid $m-gray;
background: transparent url($login-banner-image) 0 0 no-repeat; background: transparent $login-banner-image 0 0 no-repeat;
} }
} }
} }
...@@ -507,7 +507,7 @@ ...@@ -507,7 +507,7 @@
header { header {
height: 120px; height: 120px;
border-bottom: 1px solid $m-gray; border-bottom: 1px solid $m-gray;
background: transparent url($register-banner-image) 0 0 no-repeat; background: transparent $register-banner-image 0 0 no-repeat;
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment