mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 00:25:46 -06:00
35 lines
1.2 KiB
HTML
35 lines
1.2 KiB
HTML
<div class="dash-row-dropview">
|
|
<a class="dash-row-dropview-close pointer" ng-click="ctrl.rowCtrl.closeDropView();">
|
|
<i class="fa fa-remove"></i>
|
|
</a>
|
|
|
|
<div>
|
|
<div class="section">
|
|
<div class="gf-form">
|
|
<span class="gf-form-label width-6">Title</span>
|
|
<input type="text" class="gf-form-input max-width-14" ng-model='ctrl.row.title'></input>
|
|
</div>
|
|
<div class="gf-form-inline">
|
|
<div class="gf-form">
|
|
<label class="gf-form-label width-6">Size</label>
|
|
<div class="gf-form-select-wrapper">
|
|
<select class="input-small gf-form-input" ng-model="ctrl.row.titleSize" ng-options="f for f in ctrl.fontSizes"></select>
|
|
</div>
|
|
</div>
|
|
<gf-form-switch class="gf-form" label="Show" checked="ctrl.row.showTitle">
|
|
</gf-form-switch>
|
|
</div>
|
|
</div>
|
|
<div class="section">
|
|
<div class="gf-form">
|
|
<span class="gf-form-label width-7">Height</span>
|
|
<input type="text" class="gf-form-input max-width-14" ng-model='ctrl.row.height'></input>
|
|
</div>
|
|
<div class="gf-form">
|
|
<span class="gf-form-label width-7">Repeat for</span>
|
|
<dash-repeat-option model="ctrl.row"></dash-repeat-option>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|