2016-12-14 17:22:19 +01:00
|
|
|
<div class="editor-row">
|
|
|
|
|
<div class="section gf-form-group">
|
|
|
|
|
<h5 class="section-heading">Info</h5>
|
|
|
|
|
<div class="gf-form">
|
|
|
|
|
<span class="gf-form-label width-7">Title</span>
|
|
|
|
|
<input type="text" class="gf-form-input width-25" ng-model='ctrl.panel.title'></input>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="gf-form gf-form--v-stretch">
|
|
|
|
|
<span class="gf-form-label width-7">Description</span>
|
|
|
|
|
<textarea class="gf-form-input width-25" rows="3" ng-model="ctrl.panel.description" placeholder="Panel description, supports markdown & links"></textarea>
|
2016-02-17 13:46:18 +01:00
|
|
|
</div>
|
2016-12-14 17:22:19 +01:00
|
|
|
</div>
|
|
|
|
|
|
2017-08-25 10:19:08 +02:00
|
|
|
<div class="section gf-form-group">
|
|
|
|
|
<h5 class="section-heading">Options</h5>
|
|
|
|
|
<gf-form-switch class="gf-form" label-class="width-8" switch-class="max-width-6" label="Transparent" checked="ctrl.panel.transparent" on-change="ctrl.render()"></gf-form-switch>
|
2016-12-14 17:22:19 +01:00
|
|
|
<div class="gf-form">
|
2016-02-20 14:48:10 +01:00
|
|
|
<span class="gf-form-label width-8">Repeat Panel</span>
|
2016-12-14 17:22:19 +01:00
|
|
|
<dash-repeat-option model="ctrl.panel"></dash-repeat-option>
|
2016-02-17 13:46:18 +01:00
|
|
|
</div>
|
|
|
|
|
<div class="gf-form">
|
2017-08-25 10:19:08 +02:00
|
|
|
<span class="gf-form-label width-8">Min width</span>
|
2016-02-17 13:46:18 +01:00
|
|
|
<select class="gf-form-input" ng-model="ctrl.panel.minSpan" ng-options="f for f in [1,2,3,4,5,6,7,8,9,10,11,12]">
|
|
|
|
|
<option value=""></option>
|
|
|
|
|
</select>
|
2015-04-30 10:47:51 +02:00
|
|
|
</div>
|
2017-10-12 21:37:27 +02:00
|
|
|
<div class="gf-form">
|
|
|
|
|
<span class="gf-form-label width-8">Direction</span>
|
|
|
|
|
<select class="gf-form-input" ng-model="ctrl.panel.repeatDirection" ng-options="f for f in ['X', 'Y']">
|
|
|
|
|
<option value=""></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
2015-04-30 10:47:51 +02:00
|
|
|
</div>
|
2014-11-11 11:48:27 +01:00
|
|
|
|
2016-12-14 17:22:19 +01:00
|
|
|
<panel-links-editor panel="ctrl.panel"></panel-links-editor>
|
2014-11-11 11:48:27 +01:00
|
|
|
|
|
|
|
|
|