1 | .adm-image-viewer-content {
|
2 | width: 100vw;
|
3 | height: 100vh;
|
4 | touch-action: none;
|
5 | -webkit-user-select: none;
|
6 | user-select: none;
|
7 | }
|
8 | .adm-image-viewer-footer {
|
9 | position: absolute;
|
10 | width: 100%;
|
11 | bottom: 0;
|
12 | z-index: 1;
|
13 | }
|
14 | .adm-image-viewer-slides {
|
15 | height: 100%;
|
16 | position: relative;
|
17 | z-index: 1;
|
18 | cursor: -webkit-grab;
|
19 | cursor: grab;
|
20 | touch-action: none;
|
21 | }
|
22 | .adm-image-viewer-slides-inner {
|
23 | height: 100%;
|
24 | white-space: nowrap;
|
25 | }
|
26 | .adm-image-viewer-slides-inner > * {
|
27 | margin-right: 16px;
|
28 | }
|
29 | .adm-image-viewer-slide {
|
30 | position: relative;
|
31 | width: 100%;
|
32 | height: 100%;
|
33 | display: inline-block;
|
34 | }
|
35 | .adm-image-viewer-control {
|
36 | position: absolute;
|
37 | z-index: 1;
|
38 | left: 0;
|
39 | top: 0;
|
40 | width: 100%;
|
41 | height: 100%;
|
42 | cursor: -webkit-grab;
|
43 | cursor: grab;
|
44 | touch-action: none;
|
45 | }
|
46 | .adm-image-viewer-image-wrapper {
|
47 | width: 100%;
|
48 | height: 100%;
|
49 | display: flex;
|
50 | justify-content: center;
|
51 | align-items: center;
|
52 | }
|
53 | .adm-image-viewer-image-wrapper img {
|
54 | display: block;
|
55 | max-width: 100%;
|
56 | max-height: 100%;
|
57 | }
|
58 | .adm-image-viewer-indicator {
|
59 | position: absolute;
|
60 | z-index: 2;
|
61 | left: 50%;
|
62 | top: 12px;
|
63 | transform: translateX(-50%);
|
64 | color: var(--adm-color-border);
|
65 | font-size: var(--adm-font-size-6);
|
66 | }
|