Convert a to button and fix some margin from the search box to the pickable items
This commit is contained in:
committed by
Sebastiaan Janssen
parent
337ed84e47
commit
4e32ddc5b3
@@ -118,6 +118,10 @@ label.control-label, .control-label {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.macro-select .form-search {
|
||||
margin: 0 0 10px;
|
||||
}
|
||||
|
||||
// GENERAL STYLES
|
||||
// --------------
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
<umb-box-content class="block-form">
|
||||
<div ng-switch="wizardStep">
|
||||
|
||||
<div ng-switch-when="macroSelect">
|
||||
<div ng-switch-when="macroSelect" class="macro-select">
|
||||
|
||||
<div class="form-search">
|
||||
<i class="icon-search"></i>
|
||||
@@ -32,12 +32,12 @@
|
||||
<ul class="umb-card-grid -three-in-row">
|
||||
<li ng-repeat="availableItem in macros | orderBy:'name' | filter:searchTerm"
|
||||
ng-click="selectMacro(availableItem)">
|
||||
<a class="umb-card-grid-item" href="" title="{{availableItem.name}}">
|
||||
<button class="btn-reset umb-card-grid-item" title="{{availableItem.name}}">
|
||||
<span>
|
||||
<i class="icon-settings-alt"></i>
|
||||
<i class="icon-settings-alt" aria-hidden="true"></i>
|
||||
{{availableItem.name}}
|
||||
</span>
|
||||
</a>
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user