mirror of
https://github.com/Karaka-Management/cssOMS.git
synced 2026-01-11 11:18:39 +00:00
40 lines
569 B
SCSS
40 lines
569 B
SCSS
|
|
|
|
.btn {
|
|
cursor: pointer;
|
|
}
|
|
|
|
button, input[type="submit"], input[type="button"], a.button {
|
|
cursor: pointer;
|
|
min-width: 70px;
|
|
height: 2rem;
|
|
|
|
background: var(--button-colored-background);
|
|
color: var(--text-on-background-color-2);
|
|
margin: 0;
|
|
padding: 0;
|
|
flex: 0;
|
|
height: 32px;
|
|
border: none;
|
|
box-shadow: none;
|
|
|
|
&:hover {
|
|
background: var(--button-colored-background-hover);
|
|
}
|
|
}
|
|
|
|
button.save, .button.save {
|
|
|
|
}
|
|
|
|
button.cancel, .button.cancel {
|
|
|
|
}
|
|
|
|
button.delete, .button.delete {
|
|
|
|
}
|
|
|
|
button.ok, .button.ok {
|
|
|
|
} |