comparison StoneWebViewer/Resources/Styles/wv-loadingbar.scss @ 1495:fb74ed5d8c22

initial commit of the Stone Web viewer
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 25 Jun 2020 16:51:10 +0200
parents
children
comparison
equal deleted inserted replaced
1494:5a3ef478deb6 1495:fb74ed5d8c22
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 }