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