blob: f2c20354802971e39a60fbd164b76e75b665ad87 (
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
|
.docuLinkBox-cont, .docuLinkBox-cont-small {
cursor: default;
position: absolute;
width: 15;
height: 15;
border-radius: 20px;
pointer-events: all;
user-select: none;
.docuLinkBox-linkCloser {
position: absolute;
width: 18;
height: 18;
background: rgb(219, 21, 21);
top: -1px;
left: -1px;
border-radius: 5px;
display: flex;
justify-content: center;
align-items: center;
padding-left: 2px;
padding-top: 1px;
}
}
.docuLinkBox-cont-small {
width:5px;
height:5px;
}
|