Commit a9ac1121 by Torkel Ödegaard

Moved parser/target editor warning icon to the right, now the hide/show eye is…

Moved parser/target editor warning icon to the right, now the hide/show eye is still usefull even when only working with the text editor
parent 8e2008f8
...@@ -9,9 +9,9 @@ ...@@ -9,9 +9,9 @@
<div class="grafana-target-inner-wrapper"> <div class="grafana-target-inner-wrapper">
<div class="grafana-target-inner"> <div class="grafana-target-inner">
<ul class="grafana-target-controls"> <ul class="grafana-target-controls">
<li ng-if="target.yaxis"> <li ng-show="parserError">
<a class="pointer" ng-click="setYAxis()"> <a bs-tooltip="parserError" style="color: rgb(229, 189, 28)" role="menuitem">
y&sup2; <i class="icon-warning-sign"></i>
</a> </a>
</li> </li>
<li> <li>
...@@ -42,18 +42,13 @@ ...@@ -42,18 +42,13 @@
</ul> </ul>
<ul class="grafana-target-controls-left"> <ul class="grafana-target-controls-left">
<li ng-hide="parserError"> <li>
<a class="grafana-target-segment" <a class="grafana-target-segment"
ng-click="target.hide = !target.hide; get_data();" ng-click="target.hide = !target.hide; get_data();"
role="menuitem"> role="menuitem">
<i class="icon-eye-open"></i> <i class="icon-eye-open"></i>
</a> </a>
</li> </li>
<li ng-show="parserError">
<a class="grafana-target-segment" bs-tooltip="parserError" style="color: rgb(229, 189, 28)" ng-click="hideit()" role="menuitem">
<i class="icon-warning-sign"></i>
</a>
</li>
</ul> </ul>
<input type="text" <input type="text"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment