157 lines
2.4 KiB
SCSS
Raw Permalink Normal View History

2022-09-08 15:06:44 -04:00
//
// chartist.scss
//
@import "~chartist/dist/chartist.min.css";
.ct-golden-section:before {
float: none;
}
.ct-chart {
max-height: 300px;
.ct-label {
fill: $gray-500;
color: $gray-500;
font-size: 12px;
line-height: 1;
}
}
.ct-chart.simple-pie-chart-chartist {
.ct-label {
color: $white;
fill: $white;
font-size: 16px;
}
}
.ct-chart {
.ct-series {
&.ct-series-a {
.ct-bar,
.ct-line,
.ct-point,
.ct-slice-donut {
stroke: $primary;
}
}
&.ct-series-b {
.ct-bar,
.ct-line,
.ct-point,
.ct-slice-donut {
stroke: $success;
}
}
&.ct-series-c {
.ct-bar,
.ct-line,
.ct-point,
.ct-slice-donut {
stroke: $warning;
}
}
&.ct-series-d {
.ct-bar,
.ct-line,
.ct-point,
.ct-slice-donut {
stroke: $danger;
}
}
&.ct-series-e {
.ct-bar,
.ct-line,
.ct-point,
.ct-slice-donut {
stroke: $info;
}
}
&.ct-series-f {
.ct-bar,
.ct-line,
.ct-point,
.ct-slice-donut {
stroke: $pink;
}
}
&.ct-series-g {
.ct-bar,
.ct-line,
.ct-point,
.ct-slice-donut {
stroke: $primary;
}
}
}
}
.ct-series-a {
.ct-area,
.ct-slice-pie {
fill: $primary !important;
}
}
.ct-series-b {
.ct-area,
.ct-slice-pie {
fill: $success !important;
}
}
.ct-series-c {
.ct-area,
.ct-slice-pie {
fill: $warning;
}
}
.ct-series-d {
.ct-area,
.ct-slice-pie {
fill: $danger !important;
}
}
.ct-area {
fill-opacity: 0.33 !important;
}
.chartist-tooltip {
position: absolute;
display: inline-block;
opacity: 0;
min-width: 10px;
padding: 2px 10px;
border-radius: 3px;
background: $dark;
color: $white;
text-align: center;
pointer-events: none;
z-index: 1;
transition: opacity 0.2s linear;
&.tooltip-show {
opacity: 1;
}
}