CSS tweaks (#1538)

* More css tweaking

* Tweak dropdowns
This commit is contained in:
Tim Wilkinson 2024-09-18 19:31:15 -07:00 committed by GitHub
parent 752dfc514b
commit f607061a64
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 13 additions and 0 deletions

View File

@ -161,6 +161,13 @@
{
border-color: transparent;
}
#ctrl-modal input[type=text]:disabled,
#ctrl-modal input[type=password]:disabled,
#ctrl-modal input[type=file]:disabled,
#ctrl-modal select:disabled
{
color: var(--ctrl-modal-fg-disabled-color);
}
#ctrl-modal input[type=file]
{
max-width: 350px;
@ -178,6 +185,8 @@
background-color: var(--ctrl-modal-textbox-bg-color);
border: 1px solid var(--ctrl-modal-textbox-border-color);
border-radius: .2em;
border-top-left-radius: 10px;
border-bottom-right-radius: 10px;
direction: rtl;
text-align: right;
}

View File

@ -15,6 +15,7 @@
--ctrl-bg-color-hover: #f0f0f0;
--ctrl-modal-backdrop-color: rgba(0,0,0,0.7);
--ctrl-modal-fg-color: #000000;
--ctrl-modal-fg-disabled-color: #808080;
--ctrl-modal-bg-color: #ffffff;
--ctrl-modal-border-color: #202020;
--ctrl-modal-border-color-error: hsl(0, 100%, 37%);

View File

@ -15,6 +15,7 @@
--ctrl-bg-color-hover: #202020;
--ctrl-modal-backdrop-color: rgba(43, 32, 32, 0.7);
--ctrl-modal-fg-color: #f0f0f0;
--ctrl-modal-fg-disabled-color: #808080;
--ctrl-modal-bg-color: #101010;
--ctrl-modal-border-color: #404040;
--ctrl-modal-border-color-error: hsl(0, 100%, 37%);

View File

@ -15,6 +15,7 @@
--ctrl-bg-color-hover: #f0f0f0;
--ctrl-modal-backdrop-color: rgba(0,0,0,0.7);
--ctrl-modal-fg-color: #000000;
--ctrl-modal-fg-disabled-color: #808080;
--ctrl-modal-bg-color: #ffffff;
--ctrl-modal-border-color: #202020;
--ctrl-modal-border-color-error: hsl(0, 100%, 37%);

View File

@ -15,6 +15,7 @@
--ctrl-bg-color-hover: #f0f0f0;
--ctrl-modal-backdrop-color: rgba(0,0,0,0.7);
--ctrl-modal-fg-color: #404040;
--ctrl-modal-fg-disabled-color: #808080;
--ctrl-modal-bg-color: #f0f0f0;
--ctrl-modal-border-color: #202020;
--ctrl-modal-border-color-error: hsl(0, 100%, 37%);