-
Notifications
You must be signed in to change notification settings - Fork 626
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #615 from thusithak/release-2.0.0
fix for store action bar - adding icons and bar layout fix
- Loading branch information
Showing
1 changed file
with
15 additions
and
14 deletions.
There are no files selected for viewing
29 changes: 15 additions & 14 deletions
29
...ature/src/main/resources/extensions/store/assets/api/themes/store/partials/action-bar.hbs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
{{#if actionBar}} | ||
<div class="wr-action-btn-bar"> | ||
<ul class="nav navbar-nav"> | ||
{{#each actionBar.actions}} | ||
<li> | ||
<a href='{{url ""}}{{this.url}}' id="{{this.id}}"> | ||
<li class="action-wrapper"> | ||
<div class="action-img-icon">{{this.iconClass}}</div> | ||
<label class="action-title">{{this.name}}<label> | ||
</li> | ||
</a> | ||
</li> | ||
{{/each}} | ||
</ul> | ||
</div> | ||
<div class="wr-action-btn-bar"> | ||
<ul class="nav navbar-nav"> | ||
{{#each actionBar.actions}} | ||
<li> | ||
<a href='{{url ""}}{{this.url}}' id="{{this.id}}"> | ||
<li class="action-wrapper"> | ||
<!--<div class="action-img-icon"></div>--> | ||
<i class="fa {{this.iconClass}} fa-2x"></i> | ||
<span class="action-title pull-right">{{this.name}}<span> | ||
</li> | ||
</a> | ||
</li> | ||
{{/each}} | ||
</ul> | ||
</div> | ||
{{/if}} |