blob: 2c550051c330f3faec56873d39ba277e9f481486 (
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
|
@import "globalCssVariables";
.inkingCanvas {
opacity:0.99;
}
.inkingCanvas-paths-ink, .inkingCanvas-paths-markers, .inkingCanvas-noSelect, .inkingCanvas-canSelect {
position: absolute;
top: 0;
left:0;
width: 8192px;
height: 8192px;
cursor:"crosshair";
pointer-events: auto;
}
.inkingCanvas-canSelect,
.inkingCanvas-noSelect {
top:-50000px;
left:-50000px;
width: 100000px;
height: 100000px;
}
.inkingCanvas-noSelect {
pointer-events: none;
cursor: "arrow";
}
.inkingCanvas-paths-ink, .inkingCanvas-paths-markers {
pointer-events: none;
z-index: 10000; // overlays ink on top of everything
cursor: "arrow";
}
.inkingCanvas-paths-markers {
mix-blend-mode: multiply;
}
|