main
scss 37 lines 574 Bytes
Raw
1 .apexcharts-canvas {
2 .apexcharts-toolbar {
3 z-index: 2;
4
5 .apexcharts-menu-item {
6 color: #000;
7 }
8 }
9
10 foreignObject {
11 display: none;
12 }
13 }
14
15 .apexcharts-tooltip {
16 backdrop-filter: blur(3px);
17 box-shadow:
18 0px 5px 10px -5px rgba(0, 0, 0, 0.2),
19 0px 5px 20px 0px rgba(0, 0, 0, 0.2) !important;
20
21 &.apexcharts-theme-dark {
22 background: rgba(0, 0, 0, 0.5) !important;
23 }
24
25 &.apexcharts-theme-light {
26 background: rgba(255, 255, 255, 0.5) !important;
27 }
28 }
29
30 .direction-rtl {
31 .apexcharts-legend {
32 direction: ltr;
33 }
34 .apexcharts-title-text {
35 direction: ltr;
36 }
37 }