Commit 331d957625f7cdb9657d54831883ccfce46e694b
Exists in
spb-stable
and in
3 other branches
Merge branch 'asset-path-in-scss' into 'master'
Use rails scss image-url herlper
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
app/assets/stylesheets/sections/header.scss
| ... | ... | @@ -108,7 +108,7 @@ header { |
| 108 | 108 | |
| 109 | 109 | h1 { |
| 110 | 110 | margin: 0; |
| 111 | - background: url('logo-black.png') no-repeat center center; | |
| 111 | + background: image-url('logo-black.png') no-repeat center center; | |
| 112 | 112 | background-size: 32px; |
| 113 | 113 | float: left; |
| 114 | 114 | height: 46px; |
| ... | ... | @@ -220,7 +220,7 @@ header { |
| 220 | 220 | .app_logo { |
| 221 | 221 | a { |
| 222 | 222 | h1 { |
| 223 | - background: url('logo-white.png') no-repeat center center; | |
| 223 | + background: image-url('logo-white.png') no-repeat center center; | |
| 224 | 224 | background-size: 32px; |
| 225 | 225 | color: #fff; |
| 226 | 226 | text-shadow: 0 1px 1px #444; | ... | ... |