ddb31065ab
This patch adds host details view for admin. Change-Id: I99a7429f226bf62edea2f745e844c963099a48e8 Implements: blueprint add-host-panel
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;
|
|
}
|
|
}
|
|
} |