blob: 84e176b342e0039a9d3b941b204271fe4350ae67 (
plain) (
blame)
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
|
@import '_variables';
@import '_mixins';
.help-tooltip-button {
cursor: pointer;
border: none;
my-global-icon {
width: 17px;
position: relative;
top: -2px;
margin: 5px;
@include apply-svg-color(var(--mainForegroundColor))
}
}
::ng-deep {
.help-popover {
max-width: 300px;
.popover-body {
font-family: $main-fonts;
text-align: left;
padding: 10px;
font-size: 13px;
background-color: var(--mainBackgroundColor);
color: var(--mainForegroundColor);
box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
p {
margin-bottom: 0;
}
ul {
padding-left: 20px;
margin-bottom: 0;
}
}
}
}
|