This commit is contained in:
GithubAnon0000 2025-09-24 00:57:17 -07:00 committed by GitHub
commit 07a3f76578
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 14 additions and 4 deletions

View file

@ -262,6 +262,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
display: flex; display: flex;
flex-flow: row; flex-flow: row;
justify-content: space-between; justify-content: space-between;
border-color: var(--border-ui);
.inner { .inner {
flex-grow: 1; flex-grow: 1;
@ -287,13 +288,13 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
.chevron { .chevron {
height: 100%; height: 100%;
align-self: flex-end; align-self: flex-end;
border-left: 1px solid var(--border-subtle); border-left: 1px solid var(--border-ui);
} }
:global([dir="rtl"]) { :global([dir="rtl"]) {
.chevron { .chevron {
border-left: none; border-left: none;
border-right: 1px solid var(--border-subtle); border-right: 1px solid var(--border-ui);
} }
} }
</style> </style>

View file

@ -210,7 +210,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
.spin-box { .spin-box {
width: 100%; width: 100%;
background: var(--canvas-inset); background: var(--canvas-inset);
border: 1px solid var(--border); border: 1px solid var(--border-ui);
border-radius: var(--border-radius); border-radius: var(--border-radius);
overflow: hidden; overflow: hidden;
position: relative; position: relative;

View file

@ -31,6 +31,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
} }
.form-check-input { .form-check-input {
border-color: var(--border-ui);
-webkit-appearance: none; -webkit-appearance: none;
appearance: none; appearance: none;
height: 1.5em; height: 1.5em;

View file

@ -56,7 +56,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
page-break-inside: avoid; page-break-inside: avoid;
} }
h1 { h1 {
border-bottom: 1px solid var(--border); border-bottom: 1px solid var(--border-ui);
padding-bottom: 0.25em; padding-bottom: 0.25em;
} }
.help-badge { .help-badge {

View file

@ -17,6 +17,7 @@ $color-palette: (
7: #afafaf, 7: #afafaf,
8: #999999, 8: #999999,
9: #858585, 9: #858585,
10: #949494,
), ),
darkgray: ( darkgray: (
0: #737373, 0: #737373,

View file

@ -178,6 +178,13 @@ $vars: (
dark: palette(blue, 5), dark: palette(blue, 5),
), ),
), ),
ui: (
"Border color of ui elements, designed for minimum A11Y contrast against the background.",
(
light: palette(lightgray, 10),
dark: palette(blue, 5),
),
),
), ),
button: ( button: (
bg: ( bg: (