-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtooltip.css
More file actions
77 lines (70 loc) · 1.7 KB
/
Copy pathtooltip.css
File metadata and controls
77 lines (70 loc) · 1.7 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
67
68
69
70
71
72
73
74
75
76
77
.apexcharts-tooltip {
opacity: 1 !important;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
border-radius: 8px !important;
border: 1px solid rgba(255, 255, 255, 0.2) !important;
background: rgba(255, 255, 255, 0.95) !important;
backdrop-filter: blur(5px) !important;
-webkit-backdrop-filter: blur(5px) !important;
color: #1a1a1a !important;
font-family: 'Vazirmatn', sans-serif !important;
font-weight: 400 !important;
min-width: 150px !important;
max-width: 180px !important;
padding: 6px 8px !important;
position: absolute !important;
transform: translateY(-100%) !important;
margin-top: -5px !important;
overflow: hidden !important;
}
.tooltip-header {
font-size: 12px;
font-weight: 700;
margin-bottom: 4px;
text-align: center;
color: #000;
direction: rtl;
}
.tooltip-price {
font-size: 12px;
font-weight: 400;
text-align: left;
color: #2c3e50;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
margin-bottom: 4px;
direction: ltr;
display: flex;
align-items: center;
justify-content: flex-start;
gap: 4px;
}
.tooltip-price svg {
width: 16px;
height: 16px;
margin-top: -3px;
margin-left: 3px;
vertical-align: middle;
}
.tooltip-percentage {
display: flex;
align-items: center;
justify-content: flex-start;
font-size: 13px;
font-weight: 400;
color: #666;
gap: 8px;
margin-bottom: 2px;
padding: 0 4px;
text-align: left;
direction: ltr;
}
.tooltip-percentage:last-child {
margin-bottom: 0;
}
.tooltip-percentage svg {
width: 14px;
height: 14px;
margin-top: -2px;
vertical-align: middle;
flex-shrink: 0;
}