mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* Replace icons in dashboard and settings * Replace icons in alerting * Update batch of icons * Implement icons accross various files * Style updates * Search: Fix recent and starred icons * Update styling and details * Replace new icon created by unicons * Fix e2e test, styling * Minor styling updates Co-authored-by: Clarity-89 <homes89@ukr.net>
31 lines
1004 B
HTML
31 lines
1004 B
HTML
<div class="modal-body">
|
|
<div class="modal-header">
|
|
<h2 class="modal-header-title">
|
|
<icon name="'copy'" size="'lg'"></icon>
|
|
<span class="p-l-1">Row Options</span>
|
|
</h2>
|
|
|
|
<a class="modal-header-close" ng-click="ctrl.dismiss();">
|
|
<icon name="'times'"></icon>
|
|
</a>
|
|
</div>
|
|
|
|
<form name="ctrl.saveForm" ng-submit="ctrl.save()" class="modal-content text-center" novalidate>
|
|
<div class="section">
|
|
<div class="gf-form">
|
|
<span class="gf-form-label width-7">Title</span>
|
|
<input type="text" class="gf-form-input max-width-13" ng-model='ctrl.row.title'></input>
|
|
</div>
|
|
<div class="gf-form">
|
|
<span class="gf-form-label width-7">Repeat for</span>
|
|
<dash-repeat-option panel="ctrl.row"></dash-repeat-option>
|
|
</div>
|
|
|
|
<div class="gf-form-button-row">
|
|
<button type="submit" class="btn btn-primary" ng-click="ctrl.update()">Update</button>
|
|
<button type="button" class="btn btn-inverse" ng-click="ctrl.dismiss()">Cancel</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|