blob: 7474ca83941c6387d53c21d6d8269082c8e66f37 (
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
|
.gestureOverlay-cont {
width: 100vw;
height: 100vh;
position: absolute;
top: 0;
left: 0;
touch-action: none;
}
.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: .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;
}
|