Fix(UI): Reskin with milder colour theme and improved spacing in layout..

This commit is contained in:
2025-02-02 02:02:33 +00:00
parent 5a7d5417d0
commit dd10b12197
44 changed files with 320 additions and 310 deletions

View File

@@ -9,7 +9,7 @@ thead, tbody {
}
th {
background-color: var(--c_purple_pastel);
background-color: transparent;
}
td {
font-size: min(12px, calc(1vh * 3));
@@ -19,7 +19,7 @@ th, td {
min-width: fit-content;
}
tr:not(:last-child) > td {
border-bottom: 1px dashed var(--c_purple_dark);
border-bottom: 1px dashed var(--border-colour);
}
td > table > tbody > tr > td {
border: none !important;
@@ -28,17 +28,18 @@ th.collapsed, td.collapsed {
display: table-cell !important;
}
td.dirty {
background-color: var(--c_purple_dark);
background-color: var(--primary-colour);
}
td:not(.dirty) {
/* color: var(--c_purple_dark); */
background-color: var(--c_purple_pastel);
background-color: transparent;
}
tr {
min-height: 1px;
border-bottom: 1px solid var(--c_purple_dark);
border-top: 1px solid var(--c_purple_dark);
border-bottom: 1px solid;
border-top: 1px solid;
border-color: var(--border-colour);
background-color: transparent;
}
@@ -54,11 +55,11 @@ table button {
}
table button.active {
background-color: var(--c_purple_pastel);
background-color: var(--background-colour);
}
tr.delete, tr.delete > td {
background-color: red;
background-color: var(--c-red);
}
table div {