From 2c83bb253af55933d0fd338c551d6ca693cf2038 Mon Sep 17 00:00:00 2001 From: Wolfgang Knopki <wolfgang.knopki@hft-stuttgart.de> Date: Tue, 20 Oct 2020 14:57:18 +0200 Subject: [PATCH] removed absolute paths from css --- public/stylesheets/style.css | 8 ++++---- styles/artifact.scss | 4 ++-- styles/space-sections.scss | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/public/stylesheets/style.css b/public/stylesheets/style.css index 36b6f7a..178a223 100644 --- a/public/stylesheets/style.css +++ b/public/stylesheets/style.css @@ -12680,7 +12680,7 @@ button.close { position: absolute; z-index: 0; background-color: white; - background-image: url("/images/spinner2.gif"); + background-image: url("images/spinner2.gif"); background-repeat: no-repeat; background-position: 50% 50%; background-size: cover; } @@ -14762,7 +14762,7 @@ button.close { vertical-align: middle; text-align: center; } #space-loading .spinner { - background-image: url("/images/hourglass.gif"); } + background-image: url("images/hourglass.gif"); } #space-loading.active { opacity: 1; } @@ -15365,11 +15365,11 @@ body:not(.present-mode) #space .artifact.selected { .state-processing .spinner { opacity: 1; - background-image: url("/images/hourglass.gif"); } + background-image: url("images/hourglass.gif"); } .state-uploading .spinner { opacity: 0.8; - background-image: url("/images/hourglass.gif"); } + background-image: url("images/hourglass.gif"); } .state-idle .spinner { display: none; } diff --git a/styles/artifact.scss b/styles/artifact.scss index 5267a07..8d79edb 100644 --- a/styles/artifact.scss +++ b/styles/artifact.scss @@ -593,12 +593,12 @@ body:not(.present-mode) { .state-processing .spinner { opacity: 1; - background-image: url('/images/hourglass.gif'); + background-image: url('images/hourglass.gif'); } .state-uploading .spinner { opacity: 0.8; - background-image: url('/images/hourglass.gif'); + background-image: url('images/hourglass.gif'); } .state-idle .spinner { diff --git a/styles/space-sections.scss b/styles/space-sections.scss index 074eda7..8152281 100644 --- a/styles/space-sections.scss +++ b/styles/space-sections.scss @@ -378,7 +378,7 @@ } .spinner { - background-image: url('/images/hourglass.gif'); + background-image: url('images/hourglass.gif'); } &.active { -- GitLab