blob: a8db5d360a4e3060c78a6e2081db38694fcaf2b9 (
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
|
@import "../global/globalCssVariables.scss";
.linkDescriptionPopup {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
border: 2px solid $medium-blue;
background-color: $white;
width: auto;
position: absolute;
height: auto;
z-index: 10000;
border-radius: 10px;
font-size: 12px;
gap: 5px;
padding: 9px;
.linkDescriptionPopup-input {
float: left;
color: rgb(100, 100, 100);
border: none;
min-width: 160px;
}
.linkDescriptionPopup-btn {
float: right;
justify-content: center;
vertical-align: middle;
.linkDescriptionPopup-btn-dismiss {
cursor: pointer;
display: inline;
white-space: nowrap;
padding: 5px;
vertical-align: middle;
background-color: $close-red;
border-radius: 3px;
color: black;
}
.linkDescriptionPopup-btn-add {
cursor: pointer;
display: inline;
white-space: nowrap;
padding: 5px;
vertical-align: middle;
background-color: $light-blue;
border-radius: 3px;
color: black;
}
}
}
|