File size: 342 Bytes
97420cf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
@import "../../css/colors.css";
.button {
background: none;
cursor: pointer;
user-select: none;
}
.button:active {
background-color: $motion-transparent;
}
.highlighted.button {
background-color: $motion-transparent;
}
.mod-disabled {
cursor: auto;
opacity: .5;
}
.mod-disabled:active {
background: none;
}
|