mirror of
https://github.com/nextcloud/passman.git
synced 2024-11-10 09:13:00 +08:00
improve dark mode for credential sharing
Signed-off-by: binsky <timo@binsky.org>
This commit is contained in:
parent
ed84f457a2
commit
d549edbe47
4 changed files with 16 additions and 6 deletions
10
css/app.css
10
css/app.css
|
@ -1181,9 +1181,15 @@
|
|||
font-size: 11px; }
|
||||
|
||||
tags-input .tags {
|
||||
width: 100%; }
|
||||
width: 100%;
|
||||
background-color: var(--color-main-background);
|
||||
border: 2px solid var(--color-border-maxcontrast);
|
||||
border-radius: var(--border-radius-large);
|
||||
box-shadow: unset; }
|
||||
tags-input .tags .input {
|
||||
width: auto !important; }
|
||||
width: auto !important;
|
||||
background-color: var(--color-background-darker);
|
||||
font-size: var(--default-font-size); }
|
||||
tags-input .tags .tag-item {
|
||||
color: var(--color-text-lighter); }
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -407,9 +407,6 @@
|
|||
background-color: var(--color-background-darker);
|
||||
font-size: var(--default-font-size);
|
||||
}
|
||||
.tag-item {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
.credential_textarea {
|
||||
|
|
|
@ -79,8 +79,15 @@
|
|||
tags-input {
|
||||
.tags {
|
||||
width: 100%;
|
||||
background-color: var(--color-main-background);
|
||||
border: 2px solid var(--color-border-maxcontrast);
|
||||
border-radius: var(--border-radius-large);
|
||||
box-shadow: unset;
|
||||
|
||||
.input {
|
||||
width: auto!important;
|
||||
background-color: var(--color-background-darker);
|
||||
font-size: var(--default-font-size);
|
||||
}
|
||||
.tag-item {
|
||||
color: var(--color-text-lighter);
|
||||
|
|
Loading…
Reference in a new issue