grafana/public/sass/components/_panel_piechart.scss

41 lines
682 B
SCSS
Raw Normal View History

2019-02-27 11:07:58 -06:00
.piechart-panel {
position: relative;
display: table;
width: 100%;
height: 100%;
2019-03-08 06:17:04 -06:00
.piechart-container {
top: 10px;
margin: auto;
svg {
width: 100%;
height: 100%;
}
2019-02-27 11:07:58 -06:00
}
2019-03-06 11:32:37 -06:00
.piechart-tooltip {
white-space: nowrap;
font-size: 12px;
background-color: #141414;
color: #d8d9da;
opacity: 0;
2019-03-08 06:17:04 -06:00
position: absolute;
2019-03-06 11:32:37 -06:00
2019-03-08 06:17:04 -06:00
.piechart-tooltip-time {
text-align: center;
position: relative;
padding: $space-xxs;
2019-03-08 06:17:04 -06:00
font-weight: bold;
color: #d8d9da;
2019-03-06 11:32:37 -06:00
2019-03-08 06:17:04 -06:00
.piechart-tooltip-value {
display: table-cell;
font-weight: bold;
2019-03-13 11:44:18 -05:00
padding: 15px;
2019-03-08 06:17:04 -06:00
text-align: right;
}
}
2019-03-06 11:32:37 -06:00
}
2019-02-27 11:07:58 -06:00
}