139 lines
1.9 KiB
SCSS
139 lines
1.9 KiB
SCSS
/* sparkline chart */
|
|
#jqstooltip {
|
|
background-color: $col-white;
|
|
border-color: #ddd;
|
|
color: $font-color;
|
|
|
|
.jqsfield {
|
|
color: $font-color;
|
|
}
|
|
}
|
|
|
|
/* chartist */
|
|
$ct-series-colors: (
|
|
a: #6ebdd1,
|
|
b: #f9ab6c,
|
|
c: #afc979,
|
|
d: #AB7DF6,
|
|
e: #5cc196,
|
|
f: #d17905,
|
|
g: #453d3f,
|
|
h: #59922b,
|
|
i: #0544d3,
|
|
j: #6b0392,
|
|
k: #f05b4f,
|
|
l: #dda458,
|
|
m: #eacf7d,
|
|
n: #86797d,
|
|
o: #b2c326,
|
|
);
|
|
|
|
.ct-chart {
|
|
position: relative;
|
|
}
|
|
.ct-series {
|
|
.ct-line {
|
|
stroke-width: 3px;
|
|
}
|
|
.ct-bar {
|
|
stroke-width: 15px;
|
|
}
|
|
.ct-point {
|
|
stroke-width: 10px;
|
|
stroke-linecap: circle;
|
|
}
|
|
}
|
|
|
|
@each $series-name, $series-color in $ct-series-colors {
|
|
.ct-series-#{$series-name} {
|
|
.ct-line,
|
|
.ct-bar,
|
|
.ct-point {
|
|
stroke: $series-color;
|
|
}
|
|
|
|
.ct-area,
|
|
.ct-slice-donut-solid,
|
|
.ct-slice-pie,
|
|
.ct-bar {
|
|
fill: $series-color;
|
|
}
|
|
}
|
|
}
|
|
|
|
.chartist-tooltip {
|
|
@include border-radius(3px);
|
|
|
|
min-width: 3.5em;
|
|
background: #5a5a5a;
|
|
color: $col-white;
|
|
|
|
&:before {
|
|
margin-left: -8px;
|
|
border-width: 8px;
|
|
border-top-color: #5a5a5a;
|
|
}
|
|
}
|
|
|
|
.ct-axis-title {
|
|
fill: #9a9a9a;
|
|
}
|
|
|
|
|
|
/* Top Products Chart */
|
|
.ct-label {
|
|
@extend .font-14;
|
|
color: $font-color;
|
|
}
|
|
.ct-legend {
|
|
position: relative;
|
|
z-index: 5;
|
|
text-align: right;
|
|
padding: 0;
|
|
|
|
li {
|
|
@include inline-block;
|
|
position: relative;
|
|
padding-left: 16px;
|
|
margin-bottom: 3px;
|
|
margin-right: 15px;
|
|
list-style-type: none;
|
|
}
|
|
|
|
li:before {
|
|
@include border-radius(2px);
|
|
width: 12px;
|
|
height: 12px;
|
|
position: absolute;
|
|
top: 5px;
|
|
left: 0;
|
|
content: '';
|
|
border: 3px solid transparent;
|
|
}
|
|
|
|
li.inactive:before {
|
|
background: transparent;
|
|
}
|
|
|
|
&.ct-legend-inside {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
}
|
|
$i: 0;
|
|
@each $series-name, $series-color in $ct-series-colors {
|
|
.ct-series-#{$i}:before {
|
|
background-color: $series-color;
|
|
border-color: $series-color;
|
|
}
|
|
|
|
$i: $i + 1;
|
|
}
|
|
}
|
|
/* End Top Products Chart */
|
|
|
|
|
|
|
|
|
|
|