blob: 0fa3fd9733309763bb6f4cf4ba1591a3fa819341 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
.gestureOverlay-cont {
width: 100%;
height: 100%;
position: absolute;
touch-action: none;
top: 0px;
.pointerBubbles {
width: 100%;
height: 100%;
position: absolute;
pointer-events: none;
.bubble {
position: absolute;
width: 15px;
height: 15px;
border-radius: 100%;
border: 0.5px solid grey;
}
}
}
.clipboardDoc-cont {
position: absolute;
width: 300px;
height: 300px;
}
.inkToTextDoc-cont {
position: absolute;
width: 300px;
overflow: hidden;
pointer-events: none;
.inkToTextDoc-scroller {
overflow: visible;
position: absolute;
width: 100%;
.menuItem-cont {
width: 100%;
height: 25px;
padding: 2.5px;
border-bottom: 0.5px solid black;
}
}
.shadow {
width: 100%;
height: calc(100% - 25px);
position: absolute;
top: 25px;
background-color: black;
opacity: 0.2;
}
}
.filter-cont {
position: absolute;
background-color: transparent;
border: 1px solid black;
}
|