From 921906897fb6cd1b7f23f96b28980a7b15bfab55 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Thu, 17 Jan 2019 13:49:52 +0100 Subject: [PATCH] css url paths are relative to location of compiled file, not project structure --- res/css/structures/_RoomView.scss | 2 +- res/css/views/rooms/_SearchBar.scss | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/res/css/structures/_RoomView.scss b/res/css/structures/_RoomView.scss index d8926c68e4..4a84a55cd4 100644 --- a/res/css/structures/_RoomView.scss +++ b/res/css/structures/_RoomView.scss @@ -125,7 +125,7 @@ limitations under the License. .mx_RoomView_messagePanelSearchSpinner:before { background-color: $greyed-fg-color; - mask: url('../../../img/feather-icons/search-input.svg'); + mask: url('../../img/feather-icons/search-input.svg'); mask-repeat: no-repeat; mask-position: center; mask-size: 50px; diff --git a/res/css/views/rooms/_SearchBar.scss b/res/css/views/rooms/_SearchBar.scss index dddc87e5dd..390d6606c1 100644 --- a/res/css/views/rooms/_SearchBar.scss +++ b/res/css/views/rooms/_SearchBar.scss @@ -32,7 +32,7 @@ limitations under the License. width: 37px; height: 37px; background-color: $accent-color; - mask: url('../../../img/feather-icons/search-input.svg'); + mask: url('../../img/feather-icons/search-input.svg'); mask-repeat: no-repeat; mask-position: center; } @@ -55,7 +55,7 @@ limitations under the License. .mx_SearchBar_cancel { background-color: $warning-color; - mask: url('../../../img/cancel.svg'); + mask: url('../../img/cancel.svg'); mask-repeat: no-repeat; mask-position: center; mask-size: 14px;