Commit afb62638 by bergquist

ux(import): convert to new css format

parent 4a062b6d
...@@ -2,47 +2,38 @@ ...@@ -2,47 +2,38 @@
</navbar> </navbar>
<div class="page-container"> <div class="page-container">
<div class="page"> <div class="page-header">
<h2> <h1>
Import file Import file
<em style="font-size: 14px;padding-left: 10px;"> <i class="fa fa-info-circle"></i> Load dashboard from local .json file</em> <em style="font-size: 14px;padding-left: 10px;"> <i class="fa fa-info-circle"></i> Load dashboard from local .json file</em>
</h2> </h1>
</div>
<div class="editor-row"> <div class="gf-form-group">
<div class="section"> <form class="gf-form">
<div class="editor-option">
<form>
<input type="file" id="dashupload" dash-upload/><br> <input type="file" id="dashupload" dash-upload/><br>
</form> </form>
</div> </div>
</div>
</div>
<h2> <h5 class="page-heading">
Migrate dashboards Migrate dashboards
<em style="font-size: 14px;padding-left: 10px;"><i class="fa fa-info-circle"></i> Import dashboards from Elasticsearch or InfluxDB</em> <em style="font-size: 14px;padding-left: 10px;"><i class="fa fa-info-circle"></i> Import dashboards from Elasticsearch or InfluxDB</em>
</h2> </h5>
<div class="tight-form last"> <div class="gf-form-group last">
<ul class="tight-form-list"> <div class="gf-form">
<li class="tight-form-item" style="width: 150px"> <div class="gf-form-label">Dashboard source</div>
<strong>Dashboard source</strong> <div>
</li> <select type="text" ng-model="sourceName" class="input-medium tight-form-input" ng-options="f for f in datasources"></select>
<li> </div>
<select type="text" ng-model="sourceName" class="input-medium tight-form-input" ng-options="f for f in datasources"> <div class="gf-form-btn">
</select> <button class="btn btn-success" ng-click="startImport()">Import</button>
</li> </div>
<li style="float: right"> </div>
<button class="btn btn-success tight-form-btn" ng-click="startImport()">Import</button>
</li>
<div class="clearfix"></div>
</ul>
</div> </div>
<h5 class="page-heading" ng-if="importing">{{infoText}}</h5>
<div class="editor-row" ng-if="importing"> <div class="editor-row" ng-if="importing">
<section class="section">
<h5>{{infoText}}</h5>
<div class="editor-row row"> <div class="editor-row row">
<table class="grafana-options-table span5"> <table class="grafana-options-table span5">
<tr ng-repeat="dash in imported"> <tr ng-repeat="dash in imported">
...@@ -53,11 +44,9 @@ ...@@ -53,11 +44,9 @@
</tr> </tr>
</table> </table>
</div> </div>
</section>
</div> </div>
<div ng-include="'public/app/features/dashboard/partials/graphiteImport.html'"></div> <div ng-include="'public/app/features/dashboard/partials/graphiteImport.html'"></div>
</div>
</div> </div>
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