blob: 53c33ce0b98e0ff562da13f1a55062b9dadd0926 (
plain)
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
|
.textLayer {
div {
user-select: text;
}
}
.viewer-button-cont {
position: absolute;
display: flex;
justify-content: space-evenly;
align-items: center;
}
.viewer-previousPage,
.viewer-nextPage {
background: grey;
font-weight: bold;
opacity: 0.5;
padding: 0 10px;
border-radius: 5px;
}
.textLayer {
user-select: auto;
}
.pdfViewer-annotationBox {
position: absolute;
background-color: red;
opacity: 0.1;
}
.pdfViewer-annotationLayer {
position: absolute;
top: 0;
}
.pdfViewer-pinAnnotation {
background-color: red;
position: absolute;
border-radius: 100%;
}
|