comparison Applications/StoneWebViewer/Resources/Styles/wv-loadingbar.scss @ 1538:d1806b4e4839

moving OrthancStone/Samples/ as Applications/Samples/
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 11 Aug 2020 13:24:38 +0200
parents StoneWebViewer/Resources/Styles/wv-loadingbar.scss@fb74ed5d8c22
children
comparison
equal deleted inserted replaced
1537:de8cf5859e84 1538:d1806b4e4839
1 .wv-loadingbar-image-bar {
2 cursor: pointer;
3 }
4 .wv-loadingbar-not-loaded {
5 fill: rgba(255, 255, 255, 0.1);
6 }
7 .wv-loadingbar-not-loaded, .wv-loadingbar-LOW-quality {
8 transition: none;
9 }
10 .wv-loadingbar-not-loaded:hover {
11 fill: rgba(255, 255, 255, 0.2);
12 }
13 .wv-loadingbar-LOSSLESS-quality, .wv-loadingbar-PIXELDATA-quality {
14 fill:rgba(0, 255, 0, 0.7);
15 }
16 .wv-loadingbar-LOSSLESS-quality:hover,
17 .wv-loadingbar-LOSSLESS-quality.wv-loadingbar-active,
18 .wv-loadingbar-PIXELDATA-quality:hover,
19 .wv-loadingbar-PIXELDATA-quality.wv-loadingbar-active {
20 fill:rgba(0, 255, 0, 1);
21 }
22 .wv-loadingbar-LOW-quality {
23 fill:rgba(255, 0, 0, 0.7);
24 }
25 .wv-loadingbar-LOW-quality:hover, .wv-loadingbar-LOW-quality.wv-loadingbar-active {
26 fill:rgba(255, 0, 0, 1);
27 }
28 .wv-loadingbar-MEDIUM-quality {
29 fill:rgba(255, 95, 0, 0.7);
30 }
31 .wv-loadingbar-MEDIUM-quality:hover, .wv-loadingbar-MEDIUM-quality.wv-loadingbar-active {
32 fill:rgba(255, 95, 0, 1);
33 }