mirror of
https://github.com/nextcloud/passman.git
synced 2025-11-10 22:22:38 +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;
|
bottom: -1px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-navigation-entry-bullet-color {
|
||||||
|
background-color: var(--color-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab_container {
|
.tab_container {
|
||||||
|
|
|
||||||
|
|
@ -133,8 +133,9 @@ style('passman', 'app');
|
||||||
</tags-input>
|
</tags-input>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li ng-repeat="tag in available_tags | orderBy:'text'" ng-class="{'active': tagSelected(tag)}">
|
<li ng-repeat="tag in available_tags | orderBy:'text'">
|
||||||
<a class="icon-tag svg" ng-click="tagClicked(tag)" ng-class="{'icon-toggle highlight-selected': tagSelected(tag)}">{{tag.text}}</a>
|
<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>
|
||||||
<li data-id="trashbin" class="nav-trashbin pinned first-pinned">
|
<li data-id="trashbin" class="nav-trashbin pinned first-pinned">
|
||||||
<a ng-click="toggleDeleteTime()" ng-class="{'active': delete_time > 0}" class="icon-delete svg">
|
<a ng-click="toggleDeleteTime()" ng-class="{'active': delete_time > 0}" class="icon-delete svg">
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue