Fix relative paths
// FREEBIE
This commit is contained in:
parent
2a7993309a
commit
a2b2bd4bf3
5 changed files with 27 additions and 27 deletions
|
@ -131,7 +131,7 @@
|
|||
this.addThumb(this.oUrl);
|
||||
break;
|
||||
default:
|
||||
this.addThumb('/images/file.svg'); break;
|
||||
this.addThumb('../images/file.svg'); break;
|
||||
}
|
||||
|
||||
this.autoScale(file).then(function(blob) {
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
}
|
||||
|
||||
.incoming .bubble .fileView .icon {
|
||||
@include color-svg('/images/file.svg', white);
|
||||
@include color-svg('../images/file.svg', white);
|
||||
}
|
||||
|
||||
button.clock {
|
||||
|
|
|
@ -206,15 +206,15 @@ $ios-border-color: rgba(0,0,0,0.1);
|
|||
}
|
||||
|
||||
.outgoing .attachments .fileView .icon {
|
||||
@include color-svg('/images/file.svg', white);
|
||||
@include color-svg('../images/file.svg', white);
|
||||
&.audio {
|
||||
@include color-svg('/images/audio.svg', white);
|
||||
@include color-svg('../images/audio.svg', white);
|
||||
}
|
||||
&.video {
|
||||
@include color-svg('/images/video.svg', white);
|
||||
@include color-svg('../images/video.svg', white);
|
||||
}
|
||||
&.voice {
|
||||
@include color-svg('/images/voice.svg', white);
|
||||
@include color-svg('../images/voice.svg', white);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -196,28 +196,28 @@ $text-dark_l2: darken($text-dark, 30%);
|
|||
}
|
||||
|
||||
.incoming .bubble .fileView .icon{
|
||||
@include color-svg('/images/file.svg', white);
|
||||
@include color-svg('../images/file.svg', white);
|
||||
&.audio {
|
||||
@include color-svg('/images/audio.svg', white);
|
||||
@include color-svg('../images/audio.svg', white);
|
||||
}
|
||||
&.video {
|
||||
@include color-svg('/images/video.svg', white);
|
||||
@include color-svg('../images/video.svg', white);
|
||||
}
|
||||
&.voice {
|
||||
@include color-svg('/images/voice.svg', white);
|
||||
@include color-svg('../images/voice.svg', white);
|
||||
}
|
||||
}
|
||||
|
||||
.outgoing .bubble .fileView .icon {
|
||||
@include color-svg('/images/file.svg', #CCCCCC);
|
||||
@include color-svg('../images/file.svg', #CCCCCC);
|
||||
&.audio {
|
||||
@include color-svg('/images/audio.svg', #CCCCCC);
|
||||
@include color-svg('../images/audio.svg', #CCCCCC);
|
||||
}
|
||||
&.video {
|
||||
@include color-svg('/images/video.svg', #CCCCCC);
|
||||
@include color-svg('../images/video.svg', #CCCCCC);
|
||||
}
|
||||
&.voice {
|
||||
@include color-svg('/images/voice.svg', #CCCCCC);
|
||||
@include color-svg('../images/voice.svg', #CCCCCC);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1958,19 +1958,19 @@ li.entry .error-icon-container {
|
|||
color: #454545; }
|
||||
|
||||
.ios .outgoing .attachments .fileView .icon {
|
||||
-webkit-mask: url("/images/file.svg") no-repeat center;
|
||||
-webkit-mask: url("../images/file.svg") no-repeat center;
|
||||
-webkit-mask-size: 100%;
|
||||
background-color: white; }
|
||||
.ios .outgoing .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: white; }
|
||||
.ios .outgoing .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: white; }
|
||||
.ios .outgoing .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: white; }
|
||||
|
||||
|
@ -2134,7 +2134,7 @@ li.entry .error-icon-container {
|
|||
color: #f3f3f3; }
|
||||
|
||||
.android .incoming .bubble .fileView .icon {
|
||||
-webkit-mask: url("/images/file.svg") no-repeat center;
|
||||
-webkit-mask: url("../images/file.svg") no-repeat center;
|
||||
-webkit-mask-size: 100%;
|
||||
background-color: white; }
|
||||
|
||||
|
@ -2428,35 +2428,35 @@ li.entry .error-icon-container {
|
|||
.android-dark .incoming .bubble .content a {
|
||||
color: #f3f3f3; }
|
||||
.android-dark .incoming .bubble .fileView .icon {
|
||||
-webkit-mask: url("/images/file.svg") no-repeat center;
|
||||
-webkit-mask: url("../images/file.svg") no-repeat center;
|
||||
-webkit-mask-size: 100%;
|
||||
background-color: white; }
|
||||
.android-dark .incoming .bubble .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: white; }
|
||||
.android-dark .incoming .bubble .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: white; }
|
||||
.android-dark .incoming .bubble .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: white; }
|
||||
.android-dark .outgoing .bubble .fileView .icon {
|
||||
-webkit-mask: url("/images/file.svg") no-repeat center;
|
||||
-webkit-mask: url("../images/file.svg") no-repeat center;
|
||||
-webkit-mask-size: 100%;
|
||||
background-color: #CCCCCC; }
|
||||
.android-dark .outgoing .bubble .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: #CCCCCC; }
|
||||
.android-dark .outgoing .bubble .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: #CCCCCC; }
|
||||
.android-dark .outgoing .bubble .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: #CCCCCC; }
|
||||
.android-dark button.clock {
|
||||
|
|
Loading…
Reference in a new issue