mirror of
https://github.com/nextcloud/passman.git
synced 2025-12-26 18:31:06 +08:00
Use border color
This commit is contained in:
parent
2eb46ed9d7
commit
47f445587b
6 changed files with 9 additions and 7 deletions
|
|
@ -291,7 +291,8 @@
|
|||
padding-top: 0.5em;
|
||||
padding-left: 1em;
|
||||
padding-right: 1em;
|
||||
line-height: 1.3em; }
|
||||
line-height: 1.3em;
|
||||
word-wrap: break-word; }
|
||||
#app-content #app-content-wrapper .grid-view .credential .credential_content .tags {
|
||||
margin-bottom: 0.5em; }
|
||||
#app-content #app-content-wrapper .grid-view .credential .credential_content .tags .tag {
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -165,13 +165,14 @@
|
|||
flex-direction: column;
|
||||
width: 100%;
|
||||
cursor: pointer;
|
||||
font-size: 1.75em;
|
||||
font-size: 1.75em;
|
||||
text-align: center;
|
||||
.label{
|
||||
padding-top: 0.5em;
|
||||
padding-left: 1em;
|
||||
padding-right: 1em;
|
||||
line-height: 1.3em;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
.tags{
|
||||
margin-bottom: 0.5em;
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
<li ng-repeat="tab in tabs track by $index" class="tab"
|
||||
ng-class="{active:isActiveTab(tab)}"
|
||||
ng-click="onClickTab(tab)"
|
||||
use-theme color="'true'">{{tab.title}}
|
||||
>{{tab.title}}
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
|
|
|||
|
|
@ -79,7 +79,7 @@
|
|||
<li class="credential" ng-repeat="credential in credentials | credentialSearch:filterOptions | tagFilter:selectedtags | orderBy:'label'| as:this:'filtered_credentials'"
|
||||
ng-if="credential.hidden == 0 && showCredentialRow(credential)"
|
||||
ng-click="selectCredential(credential)"
|
||||
use-theme color="'true'">
|
||||
use-theme type="'border-color'">
|
||||
<div class="credential_content" >
|
||||
<div class="label">{{credential.label}}</div>
|
||||
<div class="tags">
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue