more admin dashboard polish, some code cleanup

This commit is contained in:
ari melody 2025-11-06 22:08:06 +00:00
parent 65f277b3f2
commit a66460be19
Signed by: ari
GPG key ID: CF99829C92678188
23 changed files with 163 additions and 231 deletions

View file

@ -111,7 +111,7 @@ body {
font-family: "Inter", sans-serif;
font-size: 16px;
color: var(--fg-0);
background: var(--bg-0);
background-color: var(--bg-0);
transition: background .1s ease-out, color .1s ease-out;
}
@ -252,12 +252,6 @@ a {
transition: color .1s ease-out, background-color .1s ease-out;
}
/*
a:hover {
text-decoration: underline;
}
*/
img.icon {
height: .8em;
transition: filter .1s ease-out;
@ -283,7 +277,7 @@ code {
.card {
flex-basis: 40em;
padding: 1em;
background: var(--bg-1);
background-color: var(--bg-1);
border-radius: 16px;
box-shadow: var(--shadow-lg);
@ -361,7 +355,7 @@ a.delete:not(.button) {
font-size: inherit;
color: inherit;
background: var(--bg-2);
background-color: var(--bg-2);
border: none;
border-radius: 10em;
box-shadow: var(--shadow-sm);
@ -380,27 +374,27 @@ button:active, .button:active {
.button.new, button.new {
color: var(--col-on-new);
background: var(--col-new);
background-color: var(--col-new);
}
.button.save, button.save {
color: var(--col-on-save);
background: var(--col-save);
background-color: var(--col-save);
}
.button.delete, button.delete {
color: var(--col-on-delete);
background: var(--col-delete);
background-color: var(--col-delete);
}
.button:hover, button:hover {
color: var(--bg-3);
background: var(--fg-3);
background-color: var(--fg-3);
}
.button:active, button:active {
color: var(--bg-2);
background: var(--fg-0);
background-color: var(--fg-0);
}
.button[disabled], button[disabled] {
color: var(--fg-0) !important;
background: var(--bg-3) !important;
background-color: var(--bg-3) !important;
opacity: .5;
cursor: default !important;
}