mirror of
https://github.com/portainer/portainer.git
synced 2025-07-25 08:19:40 +02:00
style(templates): new effect on hover (#268)
* style(templates): new effect on hover * feat(templates): display a loading message
This commit is contained in:
parent
b81d4fa7f2
commit
6adec680a4
6 changed files with 63 additions and 27 deletions
|
@ -77,11 +77,14 @@
|
|||
</rd-widget-header>
|
||||
<rd-widget-body classes="padding">
|
||||
<div class="template-list">
|
||||
<div ng-repeat="tpl in templates" class="container-template hvr-grow" id="template_{{ $index }}" ng-click="selectTemplate($index)">
|
||||
<div ng-repeat="tpl in templates" class="container-template hvr-underline-from-center" id="template_{{ $index }}" ng-click="selectTemplate($index)">
|
||||
<img class="logo" ng-src="{{ tpl.logo }}" />
|
||||
<div class="title">{{ tpl.title }}</div>
|
||||
<div class="description">{{ tpl.description }}</div>
|
||||
</div>
|
||||
<div ng-if="!templates" class="text-center text-muted">
|
||||
Loading...
|
||||
</div>
|
||||
<div ng-if="templates.length == 0" class="text-center text-muted">
|
||||
No templates available.
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue