mirror of https://github.com/aredn/aredn.git
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:
parent
9a75683f2e
commit
be06c36b89
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue