improve dark mode for credential sharing

Signed-off-by: binsky <timo@binsky.org>
This commit is contained in:
binsky 2023-01-03 20:55:40 +01:00
parent ed84f457a2
commit d549edbe47
4 changed files with 16 additions and 6 deletions

View file

@ -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

View file

@ -407,9 +407,6 @@
background-color: var(--color-background-darker);
font-size: var(--default-font-size);
}
.tag-item {
}
}
}
.credential_textarea {

View file

@ -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);