-
Notifications
You must be signed in to change notification settings - Fork 10
/
Tooltip.css
52 lines (46 loc) · 1.08 KB
/
Tooltip.css
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
/* TOOLTIP */
/* LIGHT TOOLTIP */
.tooltip{
font-weight: 500;
font-family: var(--default-font);
}
.theme-light .tooltip{
background-color: var(--background-primary);
color: var(--text-normal);
}
.theme-light
.tooltip .tooltip-arrow {
position: absolute;
top: -5px;
left: 50%;
width: 0;
margin-left: -5px;
border-bottom: 5px solid rgba(255, 255, 255, 0.9);
border-right: 5px solid transparent;
border-left: 5px solid transparent;
content: " ";
font-size: 0;
line-height: 0;
}
.theme-light
.tooltip.mod-right .tooltip-arrow {
top: calc(50% - 5px);
left: -5px;
border-right: 5px solid rgba(255, 255, 255, 0.9);
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
}
.theme-light
.tooltip.mod-left .tooltip-arrow {
top: calc(50% - 5px);
left: calc(100% + 5px);
border-left: 5px solid rgba(255, 255, 255, 0.9);
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
}
.theme-light
.tooltip.mod-top .tooltip-arrow {
top: calc(100%);
border-top: 5px solid rgba(255, 255, 255, 0.9);
border-bottom: 5px solid transparent;
}