fixed asset image path for stylesheets

This commit is contained in:
Mark Moser 2016-07-31 14:27:58 -05:00
parent 87bf18fa4b
commit 7758f8993c
2 changed files with 2 additions and 2 deletions

2
app/assets/stylesheets/molecules/_forms.scss Executable file → Normal file
View File

@ -211,7 +211,7 @@ select {
display: none; display: none;
} }
&:not([multiple]) { &:not([multiple]) {
background-image: url(../../assets/images/icon-dropdownlist.png); background-image: asset_data_url("icon-dropdownlist.png");
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: right 10px bottom 50%; background-position: right 10px bottom 50%;
-webkit-appearance: none; -webkit-appearance: none;

2
app/assets/stylesheets/molecules/_lists.scss Executable file → Normal file
View File

@ -29,7 +29,7 @@ ul {
position: absolute; position: absolute;
top: 3px; top: 3px;
left:0; left:0;
content:url('../../assets/images/icon-unorderedlistbullet.png'); content: asset_data_url('icon-unorderedlistbullet.png');
} }
} }
} }