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

View file

@ -210,7 +210,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
.spin-box {
width: 100%;
background: var(--canvas-inset);
border: 1px solid var(--border);
border: 1px solid var(--border-ui);
border-radius: var(--border-radius);
overflow: hidden;
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 {
border-color: var(--border-ui);
-webkit-appearance: none;
appearance: none;
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;
}
h1 {
border-bottom: 1px solid var(--border);
border-bottom: 1px solid var(--border-ui);
padding-bottom: 0.25em;
}
.help-badge {

View file

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

View file

@ -178,6 +178,13 @@ $vars: (
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: (
bg: (