1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
| .gcp-popup{
| div{
| margin-top: 8px;
| }
|
| div.title{
| margin-top: 0;
| font-weight: bold;
| max-width: 300px;
| text-overflow: ellipsis;
| white-space: nowrap;
| overflow: hidden;
| }
|
| .image-container{
| position: relative;
| .spinner{
| position: absolute;
| left: 4px;
| min-height: 32px;
| }
| }
|
| .zoom-buttons{
| float: right;
| }
|
| div.image{
| overflow: hidden;
| a{
| cursor: zoom-in;
| }
| &.loading{
| opacity: 0.2;
| }
| &.fullscreen{
| &.loading{
| opacity: 1;
| }
| display: flex;
| align-items: center;
| justify-content: center;
| color: white;
| i{
| font-size: 200%;
| position: absolute;
| left: 50%;
| top: 45%;
| }
| a{
| cursor: zoom-out;
| }
| img{
| max-width: 100%;
| max-height: 100%;
| }
| }
| }
| }
|
|