fix tab indent
This commit is contained in:
@@ -4,11 +4,11 @@
|
|||||||
<div class="form-search">
|
<div class="form-search">
|
||||||
<i class="icon-search"></i>
|
<i class="icon-search"></i>
|
||||||
<input type="text"
|
<input type="text"
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
ng-model="vm.searchTerm"
|
ng-model="vm.searchTerm"
|
||||||
class="umb-search-field search-query input-block-level"
|
class="umb-search-field search-query input-block-level"
|
||||||
placeholder="Filter..."
|
placeholder="Filter..."
|
||||||
umb-auto-focus>
|
umb-auto-focus>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -18,43 +18,41 @@
|
|||||||
|
|
||||||
<umb-tabs-content>
|
<umb-tabs-content>
|
||||||
|
|
||||||
<umb-tab id="tab{{tab.id}}" ng-repeat="tab in vm.tabs" rel="{{tab.id}}">
|
<umb-tab id="tab{{tab.id}}" ng-repeat="tab in vm.tabs" rel="{{tab.id}}">
|
||||||
|
<div ng-if="tab.alias==='Default'">
|
||||||
|
|
||||||
<div ng-if="tab.alias==='Default'">
|
<div ng-repeat="(key,value) in tab.typesAndEditors">
|
||||||
|
|
||||||
<div ng-repeat="(key,value) in tab.typesAndEditors">
|
<div ng-if="(value | filter:vm.searchTerm).length > 0">
|
||||||
<div ng-if="(value | filter:vm.searchTerm).length > 0">
|
<h5>{{key}}</h5>
|
||||||
<h5>{{key}}</h5>
|
|
||||||
<ul class="umb-card-grid" ng-mouseleave="hideDetailsOverlay()">
|
|
||||||
<li ng-repeat="systemDataType in value | orderBy:'name' | filter: vm.searchTerm" ng-mouseover="vm.showDetailsOverlay(systemDataType)">
|
|
||||||
|
|
||||||
<a href="" ng-click="model.selectDataType(systemDataType)">
|
<ul class="umb-card-grid" ng-mouseleave="hideDetailsOverlay()">
|
||||||
<i class="{{ systemDataType.icon }}" ng-class="{'icon-autofill': systemDataType.icon == null}"></i>
|
<li ng-repeat="systemDataType in value | orderBy:'name' | filter: vm.searchTerm" ng-mouseover="vm.showDetailsOverlay(systemDataType)">
|
||||||
{{ systemDataType.name }}
|
<a href="" ng-click="model.selectDataType(systemDataType)">
|
||||||
</a>
|
<i class="{{ systemDataType.icon }}" ng-class="{'icon-autofill': systemDataType.icon == null}"></i>
|
||||||
|
{{ systemDataType.name }}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
</li>
|
</div>
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div ng-if="tab.alias==='Reuse'">
|
<div ng-if="tab.alias==='Reuse'">
|
||||||
|
<h5>Your configurations</h5>
|
||||||
|
<ul class="umb-card-grid" ng-mouseleave="vm.hideDetailsOverlay()">
|
||||||
|
<li ng-repeat="configuredDataType in tab.userConfigured | orderBy:'name' | filter: vm.searchTerm" ng-mouseover="vm.showDetailsOverlay(configuredDataType)">
|
||||||
|
<a href="" ng-click="model.selectDataType(configuredDataType)">
|
||||||
|
<i class="{{ configuredDataType.icon }}" ng-class="{'icon-autofill': configuredDataType.icon == null}"></i>
|
||||||
|
{{ configuredDataType.name }}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
<h5>Your configurations</h5>
|
</umb-tab>
|
||||||
<ul class="umb-card-grid" ng-mouseleave="vm.hideDetailsOverlay()">
|
|
||||||
<li ng-repeat="configuredDataType in tab.userConfigured | orderBy:'name' | filter: vm.searchTerm" ng-mouseover="vm.showDetailsOverlay(configuredDataType)">
|
|
||||||
<a href="" ng-click="model.selectDataType(configuredDataType)">
|
|
||||||
<i class="{{ configuredDataType.icon }}" ng-class="{'icon-autofill': configuredDataType.icon == null}"></i>
|
|
||||||
{{ configuredDataType.name }}
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</umb-tab>
|
|
||||||
|
|
||||||
</umb-tabs-content>
|
</umb-tabs-content>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user