More spacing and nicer dark mode colours

This commit is contained in:
jaknapper 2024-10-03 14:01:41 +01:00
parent d4247235e3
commit 4fa2813e6a
4 changed files with 19 additions and 3 deletions

View file

@ -340,6 +340,7 @@ a:hover {
.uk-button {
border-radius: @button-border-radius;
padding: 0 8px;
border-color: @global-border;
}
.uk-button-default {
@ -351,6 +352,7 @@ a:hover {
background-color: rgba(180, 180, 180, 0.10);
border-color: @global-primary-background;
color: @button-text-color;
margin-bottom: 2px;
}
.uk-button-danger {
@ -360,6 +362,17 @@ a:hover {
}
.hook-inverse() {
.uk-button {
background-color: rgba(180, 180, 180, 0.15);
color: @inverse-primary-muted-color;
border-color: @inverse-primary-muted-color;
}
.uk-button:hover {
background-color: @inverse-primary-muted-color;
color: #fff;
border-color: #fff;
}
.uk-button-primary {
background-color: rgba(180, 180, 180, 0.15);
color: @inverse-primary-muted-color;
@ -369,6 +382,7 @@ a:hover {
.uk-button-primary:hover {
background-color: @inverse-primary-muted-color;
color: #fff;
border-color: #fff;
}
}