mirror of
https://github.com/nextcloud/passman.git
synced 2025-11-09 13:44:40 +08:00
Improved Taghighlighting
Signed-off-by: Felix Nüsse <Felix.nuesse@t-online.de>
This commit is contained in:
parent
752678aa74
commit
8eb1292cff
2 changed files with 8 additions and 2 deletions
|
|
@ -65,6 +65,11 @@
|
|||
bottom: -1px;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.app-navigation-entry-bullet-color {
|
||||
background-color: var(--color-primary);
|
||||
}
|
||||
|
||||
.tab_container {
|
||||
|
|
|
|||
|
|
@ -133,8 +133,9 @@ style('passman', 'app');
|
|||
</tags-input>
|
||||
</a>
|
||||
</li>
|
||||
<li ng-repeat="tag in available_tags | orderBy:'text'" ng-class="{'active': tagSelected(tag)}">
|
||||
<a class="icon-tag svg" ng-click="tagClicked(tag)" ng-class="{'icon-toggle highlight-selected': tagSelected(tag)}">{{tag.text}}</a>
|
||||
<li ng-repeat="tag in available_tags | orderBy:'text'">
|
||||
<div ng-if="tagSelected(tag)" class="app-navigation-entry-bullet app-navigation-entry-bullet-color"></div>
|
||||
<a class="icon-tag svg" ng-click="tagClicked(tag)">{{tag.text}}</a>
|
||||
</li>
|
||||
<li data-id="trashbin" class="nav-trashbin pinned first-pinned">
|
||||
<a ng-click="toggleDeleteTime()" ng-class="{'active': delete_time > 0}" class="icon-delete svg">
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue