blob: b44b69af57106a5ead69e619c613315dbc7c418b (
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
|
@use '../global/globalCssVariables.module.scss' as global;
.linkDescriptionPopup {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
border: 2px solid global.$medium-blue;
background-color: global.$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: global.$close-red;
border-radius: 3px;
color: black;
}
.linkDescriptionPopup-btn-add {
cursor: pointer;
display: inline;
white-space: nowrap;
padding: 5px;
vertical-align: middle;
background-color: global.$light-blue;
border-radius: 3px;
color: black;
}
}
}
|