From b72f4d57ea8c386a83c57c4be5d55c2a2a813467 Mon Sep 17 00:00:00 2001 From: Pavel Mineev Date: Thu, 7 Jan 2021 21:34:33 +0300 Subject: [PATCH] Fix paths to static --- .../comment/__link-to-parent/comment__link-to-parent.css | 2 +- .../__verification/_active/comment__verification_active.css | 2 +- .../components/comment/__verification/comment__verification.css | 2 +- .../comment/__vote/_disabled/comment__vote_disabled.css | 2 +- .../comment/__vote/_type/_down/comment__vote_type_down.css | 2 +- .../comment/__vote/_type/_up/comment__vote_type_up.css | 2 +- frontend/app/components/comment/__vote/comment__vote.css | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/frontend/app/components/comment/__link-to-parent/comment__link-to-parent.css b/frontend/app/components/comment/__link-to-parent/comment__link-to-parent.css index dc963964..b2f64a77 100644 --- a/frontend/app/components/comment/__link-to-parent/comment__link-to-parent.css +++ b/frontend/app/components/comment/__link-to-parent/comment__link-to-parent.css @@ -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 { diff --git a/frontend/app/components/comment/__verification/_active/comment__verification_active.css b/frontend/app/components/comment/__verification/_active/comment__verification_active.css index e274b88a..8f800338 100644 --- a/frontend/app/components/comment/__verification/_active/comment__verification_active.css +++ b/frontend/app/components/comment/__verification/_active/comment__verification_active.css @@ -1,3 +1,3 @@ .comment__verification_active { - background-image: url('comment__verification_active.svg'); + background-image: url('./comment__verification_active.svg'); } diff --git a/frontend/app/components/comment/__verification/comment__verification.css b/frontend/app/components/comment/__verification/comment__verification.css index 76541375..54e41e76 100644 --- a/frontend/app/components/comment/__verification/comment__verification.css +++ b/frontend/app/components/comment/__verification/comment__verification.css @@ -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 { diff --git a/frontend/app/components/comment/__vote/_disabled/comment__vote_disabled.css b/frontend/app/components/comment/__vote/_disabled/comment__vote_disabled.css index dab8cb36..16147d19 100644 --- a/frontend/app/components/comment/__vote/_disabled/comment__vote_disabled.css +++ b/frontend/app/components/comment/__vote/_disabled/comment__vote_disabled.css @@ -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; } } diff --git a/frontend/app/components/comment/__vote/_type/_down/comment__vote_type_down.css b/frontend/app/components/comment/__vote/_type/_down/comment__vote_type_down.css index 4c8db682..e9e91d3e 100644 --- a/frontend/app/components/comment/__vote/_type/_down/comment__vote_type_down.css +++ b/frontend/app/components/comment/__vote/_type/_down/comment__vote_type_down.css @@ -4,6 +4,6 @@ &.comment__vote_selected, &:hover { - background-image: url('comment__vote_type_down.svg'); + background-image: url('./comment__vote_type_down.svg'); } } diff --git a/frontend/app/components/comment/__vote/_type/_up/comment__vote_type_up.css b/frontend/app/components/comment/__vote/_type/_up/comment__vote_type_up.css index 5fb20825..f71000f9 100644 --- a/frontend/app/components/comment/__vote/_type/_up/comment__vote_type_up.css +++ b/frontend/app/components/comment/__vote/_type/_up/comment__vote_type_up.css @@ -3,6 +3,6 @@ &.comment__vote_selected, &:hover { - background-image: url('comment__vote_type_up.svg'); + background-image: url('./comment__vote_type_up.svg'); } } diff --git a/frontend/app/components/comment/__vote/comment__vote.css b/frontend/app/components/comment/__vote/comment__vote.css index c03f8497..e6eecdd6 100644 --- a/frontend/app/components/comment/__vote/comment__vote.css +++ b/frontend/app/components/comment/__vote/comment__vote.css @@ -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; }