blob: c5b8fc5e8805d22aac8432ec48a2b687b09c3ce1 (
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
|
@import "globalCssVariables";
.collectionFreeFormRemoteCursors-cont {
position:absolute;
z-index: $remoteCursors-zindex;
transform-origin: 'center center';
}
.collectionFreeFormRemoteCursors-canvas {
position:absolute;
width: 20px;
height: 20px;
opacity: 0.5;
border-radius: 50%;
border: 2px solid black;
}
.collectionFreeFormRemoteCursors-symbol {
font-size: 14;
color: black;
// fontStyle: "italic",
margin-left: -12;
margin-top: 4;
}
|