Browse Source

Small fix for the Y-Max/Y-Min inputs on Axes (#7811)

Denis Doria 9 years ago
parent
commit
891df21969
1 changed files with 4 additions and 4 deletions
  1. 4 4
      public/app/plugins/panel/graph/axes_editor.html

+ 4 - 4
public/app/plugins/panel/graph/axes_editor.html

@@ -20,13 +20,13 @@
 			</div>
 
 			<div class="gf-form-inline">
-				<div class="gf-form max-width-10">
+				<div class="gf-form">
 					<label class="gf-form-label width-5">Y-Min</label>
-					<input type="text" class="gf-form-input" placeholder="auto" empty-to-null ng-model="yaxis.min" ng-change="ctrl.render()" ng-model-onblur>
+					<input type="text" class="gf-form-input width-5" placeholder="auto" empty-to-null ng-model="yaxis.min" ng-change="ctrl.render()" ng-model-onblur>
 				</div>
-				<div class="gf-form max-width-10">
+				<div class="gf-form">
 					<label class="gf-form-label width-5">Y-Max</label>
-					<input type="text" class="gf-form-input" placeholder="auto" empty-to-null ng-model="yaxis.max" ng-change="ctrl.render()" ng-model-onblur>
+					<input type="text" class="gf-form-input width-5" placeholder="auto" empty-to-null ng-model="yaxis.max" ng-change="ctrl.render()" ng-model-onblur>
 				</div>
 			</div>