mirror of
https://github.com/prometheus/prometheus.git
synced 2025-02-02 08:31:11 -08:00
Fixed issue of partially hidden y-axis values on graph (#2589)
This commit is contained in:
parent
516a96d9a3
commit
c72692fd75
File diff suppressed because one or more lines are too long
|
@ -44,23 +44,27 @@ body {
|
|||
.legend {
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
margin: 0 0 0 40px;
|
||||
margin: 0 0 0 60px;
|
||||
}
|
||||
|
||||
.graph_area {
|
||||
position: relative;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
margin: 5px 0 5px 0;
|
||||
margin: 5px 0 5px 20px;
|
||||
}
|
||||
|
||||
.y_axis {
|
||||
overflow: hidden;
|
||||
overflow: visible;
|
||||
position: absolute;
|
||||
top: 1px;
|
||||
bottom: 0;
|
||||
width: 40px;
|
||||
}
|
||||
|
||||
.y_axis svg {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.graph .detail .item.active {
|
||||
line-height: 1.4em;
|
||||
padding: 0.5em;
|
||||
|
@ -126,7 +130,7 @@ input[name="end_input"], input[name="range_input"] {
|
|||
}
|
||||
|
||||
.prometheus_input_group.range_input {
|
||||
margin-left: 39px;
|
||||
margin-left: 59px;
|
||||
}
|
||||
|
||||
.prometheus_input_group .btn {
|
||||
|
|
Loading…
Reference in a new issue