Commit 2c83bb25 authored by Wolfgang Knopki's avatar Wolfgang Knopki
Browse files

removed absolute paths from css

parent 54430fcf
......@@ -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; }
......
......@@ -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 {
......
......@@ -378,7 +378,7 @@
}
.spinner {
background-image: url('/images/hourglass.gif');
background-image: url('images/hourglass.gif');
}
&.active {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment