Commit 59d2fe8a by bergquist

ux(dashlist_options): tight-form -> gf-form

parent be92c8bd
<div class="gf-form-group">
<div class="editor-row"> <div class="gf-form-inline">
<div class="section" style="margin-bottom: 20px"> <div class="gf-form">
<div class="tight-form last"> <span class="gf-form-label width-10">Mode</span>
<ul class="tight-form-list"> <div class="gf-form-select-wrapper max-width-10">
<li class="tight-form-item" style="width: 110px"> <select class="gf-form-input" ng-model="ctrl.panel.mode" ng-options="f for f in ctrl.modes" ng-change="ctrl.refresh()"></select>
<strong>Mode</strong> </div>
</li>
<li>
<select class="input-small tight-form-input last" ng-model="ctrl.panel.mode" ng-options="f for f in ctrl.modes" ng-change="ctrl.refresh()"></select>
</li>
</ul>
<div class="clearfix"></div>
</div> </div>
</div> </div>
<div class="section" style="margin-bottom: 20px" ng-if="ctrl.panel.mode === 'search'">
<div class="tight-form last"> <div class="gf-form-inline" ng-if="ctrl.panel.mode === 'search'">
<ul class="tight-form-list"> <div class="gf-form">
<li class="tight-form-item" style="width: 110px"> <span class="gf-form-label width-10">Search options</span>
<strong>Search options</strong> <span class="gf-form-label">Query</span>
</li>
<li class="tight-form-item"> <input type="text" class="gf-form-input" placeholder="title query"
Query ng-model="ctrl.panel.query" ng-change="ctrl.refresh()" ng-model-onblur>
</li>
<li> </div>
<input type="text" class="input-medium tight-form-input" placeholder="title query"
ng-model="ctrl.panel.query" ng-change="ctrl.refresh()" ng-model-onblur> <div class="gf-form">
</li> <span class="gf-form-label">Tags</span>
<li class="tight-form-item">
Tags <bootstrap-tagsinput ng-model="ctrl.panel.tags" tagclass="label label-tag" placeholder="add tags" on-tags-updated="ctrl.refresh()">
</li> </bootstrap-tagsinput>
<li>
<bootstrap-tagsinput ng-model="ctrl.panel.tags" tagclass="label label-tag" placeholder="add tags" on-tags-updated="ctrl.refresh()">
</bootstrap-tagsinput>
</li>
</ul>
<div class="clearfix"></div>
</div> </div>
</div> </div>
</div>
<div class="editor-row"> <div class="gf-form-inline">
<div class="section" style="margin-bottom: 20px"> <div class="gf-form">
<div class="tight-form last"> <span class="gf-form-label width-10">Limit number to</span>
<ul class="tight-form-list"> <input class="gf-form-input" type="number" ng-model="ctrl.panel.limit" ng-model-onblur ng-change="ctrl.refresh()">
<li class="tight-form-item" style="width: 110px">
<strong>Limit number to</strong>
</li>
<li>
<input class="input-small tight-form-input last" type="number" ng-model="ctrl.panel.limit" ng-model-onblur ng-change="ctrl.refresh()">
</li>
</ul>
<div class="clearfix"></div>
</div> </div>
</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