File size: 1,949 Bytes
a6ec9cb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#viewFullSizeImgModal {
    --popup-padding: 24px;
    position: sticky;
    padding: var(--popup-padding);
    pointer-events: none;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 1001;
}

#viewFullSizeImgModal > * {
    pointer-events: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#viewFullSizeImgModal .backdrop {
    max-width: unset;
    width: 100%;
    max-height: unset;
    height: 100%;
    inset: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1001;
    opacity: .5;
    border: none;
    box-shadow: none;
    overflow: hidden;
}

#viewFullSizeImgModal .content {
    min-height: initial;
    max-height: calc(100vh - (var(--popup-padding) * 2));
    height: fit-content;
    min-width: initial;
    max-width: calc(100vw - (var(--popup-padding) * 2));
    width: fit-content;
    z-index: 1003;
    overflow: visible;
}

#viewFullSizeImgModal .image-wrapper {
    min-height: initial;
    max-height: calc(100vh - (var(--popup-padding) * 2));
    height: fit-content;
    min-width: initial;
    max-width: calc(100vw - (var(--popup-padding) * 2));
    width: fit-content;
    box-sizing: border-box;
    pointer-events: auto;
    margin: 0;
    padding: 0;
    overflow: auto;
}

#viewFullSizeImgModal img.natural-zoom {
    max-width: calc(100vh - (var(--popup-padding) * 2) - 4px);
    max-height: calc(100vh - (var(--popup-padding) * 2) - 4px);
}

#viewFullSizeImgModal .content > div::-webkit-scrollbar-track, #viewFullSizeImgModal .content > div::-webkit-scrollbar-corner {
    background: rgba(0, 0, 0, .5)
}

#viewFullSizeImgModal .menu-bar {
    position: absolute;
    top: 0;
    right: 0;
    padding-right: var(--scrollbar-width);
}

#viewFullSizeImgModal .menu-bar .tertiaryButton {
    font-size: 1.2em;
    margin: 12px 12px 0 0;
    cursor: pointer;
}