Fix paths to static

This commit is contained in:
Pavel Mineev
2021-01-12 13:39:26 -06:00
committed by Umputun
parent 6474821271
commit b72f4d57ea
7 changed files with 7 additions and 7 deletions
@@ -3,7 +3,7 @@
height: 10px;
width: 16px;
vertical-align: -1px;
background: url('comment__link-to-parent.svg') center no-repeat;
background: url('./comment__link-to-parent.svg') center no-repeat;
cursor: pointer;
&:hover {
@@ -1,3 +1,3 @@
.comment__verification_active {
background-image: url('comment__verification_active.svg');
background-image: url('./comment__verification_active.svg');
}
@@ -4,7 +4,7 @@
height: 12px;
margin-left: 4px;
vertical-align: middle;
background: url('comment__verification.svg') center no-repeat;
background: url('./comment__verification.svg') center no-repeat;
background-size: cover;
&:hover {
@@ -3,7 +3,7 @@
&.comment__vote_type_down {
&,
&:hover {
background-image: url('comment__vote_disabled.svg');
background-image: url('./comment__vote_disabled.svg');
cursor: not-allowed;
}
}
@@ -4,6 +4,6 @@
&.comment__vote_selected,
&:hover {
background-image: url('comment__vote_type_down.svg');
background-image: url('./comment__vote_type_down.svg');
}
}
@@ -3,6 +3,6 @@
&.comment__vote_selected,
&:hover {
background-image: url('comment__vote_type_up.svg');
background-image: url('./comment__vote_type_up.svg');
}
}
@@ -5,7 +5,7 @@
vertical-align: top;
font-size: 0;
line-height: 0;
background: url('comment__vote.svg') center no-repeat;
background: url('./comment__vote.svg') center no-repeat;
background-size: contain;
cursor: pointer;
}