Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrantje <brantje@gmail.com>2016-10-07 17:29:51 +0300
committerbrantje <brantje@gmail.com>2016-10-07 17:29:51 +0300
commit73b114a3ff48a4eefd999696bc191972450dce7c (patch)
tree9ce9e4a2a1be02cf408eb8c98fb57a1fbe279075 /templates
parente8c9e59419065fcb3a14aab14d27089ea64e7d6b (diff)
Fix tab theming
Diffstat (limited to 'templates')
-rw-r--r--templates/views/edit_credential.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/templates/views/edit_credential.html b/templates/views/edit_credential.html
index 9d141db5..78bd30f0 100644
--- a/templates/views/edit_credential.html
+++ b/templates/views/edit_credential.html
@@ -19,12 +19,13 @@
<ul class="tab_header">
<li ng-repeat="tab in tabs track by $index" class="tab"
ng-class="{active:isActiveTab(tab)}"
- ng-click="onClickTab(tab)" use-theme
+ ng-click="onClickTab(tab)" use-theme color="'true'"
>{{tab.title}}
+ <div class="indicator" use-theme negative="'true'"></div>
</li>
</ul>
-<div class="tab_container edit_credential">
+<div class="tab_container edit_credential" use-theme type="'border-top-color'">
<div ng-include="currentTab.url"></div>
<button ng-click="saveCredential()">Save</button>
<button ng-click="cancel()">Cancel</button>