Give high contrast theme wider dialogs (now we support that) (#1716)

* Give high contrast theme wider dialogs (now we support that)

* Wider wide
This commit is contained in:
Tim Wilkinson 2024-11-22 15:03:50 -08:00 committed by GitHub
parent 9a75683f2e
commit be06c36b89
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 12 additions and 4 deletions

View File

@ -25,15 +25,15 @@
{
display: flex;
flex-direction: column;
width: 520px;
min-width: 520px;
width: var(--ctrl-modal-width-normal);
min-width: var(--ctrl-modal-width-normal);
flex: 1;
color: var(--ctrl-modal-fg-color);
}
#ctrl-modal .dialog.wide
{
width: 720px;
min-width: 720px;
width: var(--ctrl-modal-width-wide);
min-width: var(--ctrl-modal-width-wide);
}
#ctrl-modal .dialog > div:first-child
{

View File

@ -13,6 +13,8 @@
--section-subtitle-fg-color: #707070;
--section-link-fg-color: #0078a8;
--ctrl-bg-color-hover: #f0f0f0;
--ctrl-modal-width-normal: 520px;
--ctrl-modal-width-wide: 720px;
--ctrl-modal-backdrop-color: rgba(0,0,0,0.7);
--ctrl-modal-fg-color: #000000;
--ctrl-modal-fg-disabled-color: #808080;

View File

@ -13,6 +13,8 @@
--section-subtitle-fg-color: #909090;
--section-link-fg-color: #0078a8;
--ctrl-bg-color-hover: #202020;
--ctrl-modal-width-normal: 520px;
--ctrl-modal-width-wide: 720px;
--ctrl-modal-backdrop-color: rgba(43, 32, 32, 0.7);
--ctrl-modal-fg-color: #f0f0f0;
--ctrl-modal-fg-disabled-color: #808080;

View File

@ -13,6 +13,8 @@
--section-subtitle-fg-color: #707070;
--section-link-fg-color: #0078a8;
--ctrl-bg-color-hover: #f0f0f0;
--ctrl-modal-width-normal: 640px;
--ctrl-modal-width-wide: 800px;
--ctrl-modal-backdrop-color: rgba(0,0,0,0.7);
--ctrl-modal-fg-color: #000000;
--ctrl-modal-fg-disabled-color: #808080;

View File

@ -13,6 +13,8 @@
--section-subtitle-fg-color: #909090;
--section-link-fg-color: #0078a8;
--ctrl-bg-color-hover: #f0f0f0;
--ctrl-modal-width-normal: 520px;
--ctrl-modal-width-wide: 720px;
--ctrl-modal-backdrop-color: rgba(0,0,0,0.7);
--ctrl-modal-fg-color: #404040;
--ctrl-modal-fg-disabled-color: #808080;