blob: d92823ccc2b4239f2a9a1dc981c415f82a213110 (
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
.linkDescriptionPopup {
display: flex;
border: 1px solid rgb(170, 26, 26);
width: auto;
position: absolute;
height: auto;
z-index: 10000;
border-radius: 10px;
font-size: 12px;
//white-space: nowrap;
background-color: rgba(250, 250, 250, 0.95);
padding-top: 9px;
padding-bottom: 9px;
padding-left: 9px;
padding-right: 9px;
.linkDescriptionPopup-input {
float: left;
background-color: rgba(250, 250, 250, 0.95);
color: rgb(100, 100, 100);
border: none;
min-width: 160px;
}
.linkDescriptionPopup-btn {
float: right;
justify-content: center;
vertical-align: middle;
.linkDescriptionPopup-btn-dismiss {
background-color: white;
color: black;
display: inline;
right: 0;
border-radius: 10px;
border: 1px solid black;
padding: 3px;
font-size: 9px;
text-align: center;
position: relative;
margin-right: 4px;
justify-content: center;
&:hover{
cursor: pointer;
}
}
.linkDescriptionPopup-btn-add {
background-color: black;
color: white;
display: inline;
right: 0;
border-radius: 10px;
border: 1px solid black;
padding: 3px;
font-size: 9px;
text-align: center;
position: relative;
justify-content: center;
&:hover{
cursor: pointer;
}
}
}
}
|