Use relative path for file.svg

This commit is contained in:
lilia 2017-04-19 15:40:57 -07:00 committed by Scott Nonnenberg
parent 4d11e257fe
commit 2ae48ad9cd
No known key found for this signature in database
GPG key ID: A4931C09644C654B
2 changed files with 8 additions and 8 deletions

View file

@ -617,16 +617,16 @@ li.entry .error-icon-container {
vertical-align: middle;
width: $button-height * 2;
height: $button-height * 2;
@include color-svg('/images/file.svg', $grey_d);
@include color-svg('../images/file.svg', $grey_d);
&.audio {
@include color-svg('/images/audio.svg', $grey_d);
@include color-svg('../images/audio.svg', $grey_d);
}
&.video {
@include color-svg('/images/video.svg', $grey_d);
@include color-svg('../images/video.svg', $grey_d);
}
&.voice {
@include color-svg('/images/voice.svg', $grey_d);
@include color-svg('../images/voice.svg', $grey_d);
}
}
}

View file

@ -1562,22 +1562,22 @@ li.entry .error-icon-container {
vertical-align: middle;
width: 48px;
height: 48px;
-webkit-mask: url("/images/file.svg") no-repeat center;
-webkit-mask: url("../images/file.svg") no-repeat center;
-webkit-mask-size: 100%;
background-color: #454545; }
.message-container .attachments .fileView .icon.audio,
.message-list .attachments .fileView .icon.audio {
-webkit-mask: url("/images/audio.svg") no-repeat center;
-webkit-mask: url("../images/audio.svg") no-repeat center;
-webkit-mask-size: 100%;
background-color: #454545; }
.message-container .attachments .fileView .icon.video,
.message-list .attachments .fileView .icon.video {
-webkit-mask: url("/images/video.svg") no-repeat center;
-webkit-mask: url("../images/video.svg") no-repeat center;
-webkit-mask-size: 100%;
background-color: #454545; }
.message-container .attachments .fileView .icon.voice,
.message-list .attachments .fileView .icon.voice {
-webkit-mask: url("/images/voice.svg") no-repeat center;
-webkit-mask: url("../images/voice.svg") no-repeat center;
-webkit-mask-size: 100%;
background-color: #454545; }
.message-container .outgoing .avatar,