UX Analysis

This commit is contained in:
Eric Gullickson
2025-07-28 10:07:53 -05:00
parent 01a03263c9
commit 80d7e7e3ca
4 changed files with 482 additions and 10 deletions

View File

@@ -559,35 +559,65 @@ html {
height:100%;
}
body {
html[data-bs-theme="light"] body {
background-color: #fff !important;
}
table {
background-color: #fff !important;
html[data-bs-theme="dark"] body {
background-color: #212529 !important;
}
ul {
html[data-bs-theme="light"] table {
background-color: #fff !important;
}
html[data-bs-theme="dark"] table {
background-color: var(--bs-dark) !important;
}
html[data-bs-theme="light"] ul {
border: 0px !important;
background-color: #fff !important;
}
html[data-bs-theme="dark"] ul {
border: 0px !important;
background-color: var(--bs-dark) !important;
}
li {
html[data-bs-theme="light"] li {
color: #000 !important;
border: 0px !important;
background-color: #fff !important;
}
html[data-bs-theme="dark"] li {
color: #fff !important;
border: 0px !important;
background-color: var(--bs-dark) !important;
}
td {
html[data-bs-theme="light"] td {
color: #000 !important;
border: hidden;
background-color: #fff !important;
}
html[data-bs-theme="dark"] td {
color: #fff !important;
border: hidden;
background-color: var(--bs-dark) !important;
}
th {
html[data-bs-theme="light"] th {
color: #000 !important;
background-color: #fff !important;
}
html[data-bs-theme="dark"] th {
color: #fff !important;
background-color: var(--bs-dark) !important;
}
tr {
border: hidden;