7f06143158
Change-Id: I8d3fa946667429eb9b7581858a586f6cb783fa5b
45 lines
757 B
SCSS
45 lines
757 B
SCSS
.pie-chart {
|
|
display: block;
|
|
.svg-pie-chart {
|
|
.slice {
|
|
&.exists {
|
|
fill: lighten(blue, 20%);
|
|
}
|
|
&.margin {
|
|
fill: $gray-lighter;
|
|
}
|
|
}
|
|
}
|
|
.pie-chart-legend {
|
|
display: inline-block;
|
|
margin-left: 20px;
|
|
.slice-legend {
|
|
.slice-key {
|
|
&.exists {
|
|
background-color: lighten(blue, 20%);
|
|
}
|
|
&.margin {
|
|
background-color: $gray-lighter;
|
|
}
|
|
}
|
|
.chartless {
|
|
&.exists {
|
|
color: lighten(blue, 20%);
|
|
}
|
|
&.margin {
|
|
color: $gray-lighter;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.chart-tooltip {
|
|
span.fa {
|
|
&.exists {
|
|
color: lighten(blue, 20%);
|
|
}
|
|
&.margin {
|
|
color: $gray-lighter;
|
|
}
|
|
}
|
|
} |