mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 23:54:05 -08:00
564633ecbc
This helps to make the timeseries with many labels fit on the screen.
42 lines
612 B
CSS
42 lines
612 B
CSS
body {
|
|
margin: 0;
|
|
}
|
|
|
|
.graph_container {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
.graph {
|
|
position: relative;
|
|
min-height: 400px;
|
|
}
|
|
|
|
svg {
|
|
border: 1px solid #aaa;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.legend {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
margin: 0 0 0 0px;
|
|
}
|
|
|
|
.graph .detail .item.active {
|
|
line-height: 1.4em;
|
|
padding: 0.5em;
|
|
}
|
|
|
|
.graph .detail .item.active .labels {
|
|
font-size: 11px;
|
|
line-height: 11px;
|
|
}
|
|
|
|
.graph .detail .item .detail_swatch {
|
|
float: right;
|
|
display: inline-block;
|
|
width: 10px;
|
|
height: 10px;
|
|
margin: 2px 2px 0 8px;
|
|
}
|