Fixed issue of partially hidden y-axis values on graph (#2589)

pull/2593/head
Conor Broderick 8 years ago committed by Brian Brazil
parent 516a96d9a3
commit c72692fd75

File diff suppressed because one or more lines are too long

@ -44,23 +44,27 @@ body {
.legend { .legend {
display: inline-block; display: inline-block;
vertical-align: top; vertical-align: top;
margin: 0 0 0 40px; margin: 0 0 0 60px;
} }
.graph_area { .graph_area {
position: relative; position: relative;
font-family: Arial, Helvetica, sans-serif; font-family: Arial, Helvetica, sans-serif;
margin: 5px 0 5px 0; margin: 5px 0 5px 20px;
} }
.y_axis { .y_axis {
overflow: hidden; overflow: visible;
position: absolute; position: absolute;
top: 1px; top: 1px;
bottom: 0; bottom: 0;
width: 40px; width: 40px;
} }
.y_axis svg {
overflow: visible;
}
.graph .detail .item.active { .graph .detail .item.active {
line-height: 1.4em; line-height: 1.4em;
padding: 0.5em; padding: 0.5em;
@ -126,7 +130,7 @@ input[name="end_input"], input[name="range_input"] {
} }
.prometheus_input_group.range_input { .prometheus_input_group.range_input {
margin-left: 39px; margin-left: 59px;
} }
.prometheus_input_group .btn { .prometheus_input_group .btn {

Loading…
Cancel
Save