-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.less.css
More file actions
66 lines (66 loc) · 1.56 KB
/
Copy pathstyle.less.css
File metadata and controls
66 lines (66 loc) · 1.56 KB
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
.ds-markdown-tooltip.rc-tooltip {
position: fixed;
background-color: transparent;
color: inherit;
padding: 0;
border-radius: 0;
font-size: inherit;
line-height: inherit;
white-space: inherit;
box-shadow: none;
z-index: 1000;
pointer-events: none;
border: none;
opacity: 1;
visibility: visible;
display: block;
min-height: auto;
}
.ds-markdown-tooltip.rc-tooltip .rc-tooltip-inner {
background-color: #333;
color: white;
padding: 8px 12px;
border-radius: 6px;
font-size: 14px;
line-height: 1.4;
white-space: nowrap;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
border: none;
min-height: auto;
text-align: center;
text-decoration: none;
}
.ds-markdown-tooltip.rc-tooltip .rc-tooltip-arrow {
position: absolute;
width: 0;
height: 0;
border: 6px solid transparent;
}
.ds-markdown-tooltip.rc-tooltip-placement-top .rc-tooltip-arrow {
bottom: -5px;
left: 50%;
transform: translateX(-50%) translateY(100%);
border-top-color: #333;
border-bottom: none;
}
.ds-markdown-tooltip.rc-tooltip-placement-bottom .rc-tooltip-arrow {
top: -5px;
left: 50%;
transform: translateX(-50%) translateY(-100%);
border-bottom-color: #333;
border-top: none;
}
.ds-markdown-tooltip.rc-tooltip-placement-left .rc-tooltip-arrow {
right: -5px;
top: 50%;
transform: translateX(100%) translateY(-50%);
border-left-color: #333;
border-right: none;
}
.ds-markdown-tooltip.rc-tooltip-placement-right .rc-tooltip-arrow {
left: -5px;
top: 50%;
transform: translateX(-100%) translateY(-50%);
border-right-color: #333;
border-left: none;
}