edx.org - revises new register/login banner image variable paths to resolve a Sass rendering issue

This commit is contained in:
Brian Talbot
2013-06-03 15:25:39 -04:00
committed by Nate Hardison
parent 268524597c
commit 110899620f
2 changed files with 4 additions and 4 deletions

View File

@@ -129,7 +129,7 @@ $footer_margin: ($baseline/4) 0 ($baseline*1.5) 0;
//-----------------
$homepage-bg-image: '../images/homepage-bg.jpg';
$login-banner-image: 'transparent url("../images/bg-banner-login.png") 0 0 no-repeat';
$register-banner-image: 'transparent url("../images/bg-banner-register.png") 0 0 no-repeat';
$login-banner-image: '../images/bg-banner-login.png';
$register-banner-image: '../images/bg-banner-register.png';
$video-thumb-url: '../images/courses/video-thumb.jpg';

View File

@@ -493,7 +493,7 @@
header {
height: 120px;
border-bottom: 1px solid $m-gray;
background: $login-banner-image;
background: transparent url($login-banner-image) 0 0 no-repeat;
}
}
}
@@ -507,7 +507,7 @@
header {
height: 120px;
border-bottom: 1px solid $m-gray;
background: transparent url("../images/bg-banner-register.png") 0 0 no-repeat;
background: transparent url($register-banner-image) 0 0 no-repeat;
}
}
}