Bug with light text in input fields has been resolved :P
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Halfdan Mouritzen 2024-02-28 15:14:44 +01:00
parent 817ea2a702
commit 4ef7f4e8b9
4 changed files with 1 additions and 2085 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -46,7 +46,6 @@ h6 {
/* Variables */
:root {
color-scheme: light dark;
/* Colors */
--light: #ffffff;
--light-dust: #fefef9;
@ -388,6 +387,7 @@ input[type="email"] {
padding: 8px;
background: var(--light-dust);
width: 100%;
color : var(--dark);
}
form fieldset {
@ -396,8 +396,6 @@ form fieldset {
margin: 0;
}
form div.buttonHolder {}
form div.buttonHolder button {
display: inline-block;
}
@ -533,59 +531,3 @@ span.time_remaining {
.pagination .page-item.disabled .page-link {
cursor: default;
}
/*
@media (prefers-color-scheme: dark) {
body {
background: var(--dark-dark);
color: var(--medium-dust)
}
h1,
h2,
h3,
h4,
h5,
h6,
footer,
nav ol li a {
color: var(--medium-dust);
}
nav ol li a:not(.current):hover {
border-color: var(--medium-dust);
}
header,
main aside,
nav {
background: #1d1d1d;
}
nav {
border: none;
}
hr {
border-color: var(--twilight);
}
main aside div,
article div.content-view {
background: var(--dark-twilight);
}
article table tbody {
background: var(--dark-twilight);
}
article table tbody tr:nth-child(2n+1) {
background: var(--dark);
}
article table tbody tr:nth-child(2n+1) td {
border-top: 1px solid var(--dark-dark);
border-bottom: 1px solid var(--dark-dark);
}
}
*/