mirror of
https://github.com/nextcloud/passman.git
synced 2025-11-10 22:22:38 +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; }
|
font-size: 11px; }
|
||||||
|
|
||||||
tags-input .tags {
|
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 {
|
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 {
|
tags-input .tags .tag-item {
|
||||||
color: var(--color-text-lighter); }
|
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);
|
background-color: var(--color-background-darker);
|
||||||
font-size: var(--default-font-size);
|
font-size: var(--default-font-size);
|
||||||
}
|
}
|
||||||
.tag-item {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.credential_textarea {
|
.credential_textarea {
|
||||||
|
|
|
||||||
|
|
@ -79,8 +79,15 @@
|
||||||
tags-input {
|
tags-input {
|
||||||
.tags {
|
.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;
|
||||||
|
|
||||||
.input {
|
.input {
|
||||||
width: auto!important;
|
width: auto!important;
|
||||||
|
background-color: var(--color-background-darker);
|
||||||
|
font-size: var(--default-font-size);
|
||||||
}
|
}
|
||||||
.tag-item {
|
.tag-item {
|
||||||
color: var(--color-text-lighter);
|
color: var(--color-text-lighter);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue