fix bugs and remove deprecated css

This commit is contained in:
Dennis Eichhorn 2022-12-25 00:00:04 +01:00
parent eec003a476
commit 2dddeb12b3
3 changed files with 510 additions and 655 deletions

View File

@ -37,7 +37,7 @@ button, input[type="submit"], input[type="button"], label.button, a.button {
}
}
button.save, .button.save {
button.save, .button.save, input[type="submit"].save {
color: rgba(0, 0, 0, 0.75);
background: #8fff79;
@ -46,7 +46,7 @@ button.save, .button.save {
}
}
button.cancel, .button.cancel {
button.cancel, .button.cancel, input[type="submit"].cancel {
background: #ee5649;
&:hover, &:focus {
@ -54,7 +54,7 @@ button.cancel, .button.cancel {
}
}
button.close, .button.close {
button.close, .button.close, input[type="submit"].close {
color: rgba(0, 0, 0, 0.75);
background: #fffc3e;
@ -63,7 +63,7 @@ button.close, .button.close {
}
}
button.disabled, .button.disabled {
button.disabled, .button.disabled, input[type="submit"].disabled {
color: rgba(0, 0, 0, 0.5);
background: #e1e1e1;
cursor: not-allowed;

1149
grid.scss

File diff suppressed because it is too large Load Diff

View File

@ -4290,24 +4290,24 @@ button, input[type="submit"], input[type="button"], label.button, a.button {
button i, input[type="submit"] i, input[type="button"] i, label.button i, a.button i {
margin: 0 .5rem 0 0; }
button.save, .button.save {
button.save, .button.save, input[type="submit"].save {
color: rgba(0, 0, 0, 0.75);
background: #8fff79; }
button.save:hover, button.save:focus, .button.save:hover, .button.save:focus {
background: #a1ffa1; }
button.cancel, .button.cancel {
button.cancel, .button.cancel, input[type="submit"].cancel {
background: #ee5649; }
button.cancel:hover, button.cancel:focus, .button.cancel:hover, .button.cancel:focus {
background: #ff7d79; }
button.close, .button.close {
button.close, .button.close, input[type="submit"].close {
color: rgba(0, 0, 0, 0.75);
background: #fffc3e; }
button.close:hover, button.close:focus, .button.close:hover, .button.close:focus {
background: #fffd7b; }
button.disabled, .button.disabled {
button.disabled, .button.disabled, input[type="submit"].disabled {
color: rgba(0, 0, 0, 0.5);
background: #e1e1e1;
cursor: not-allowed; }