mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2024-11-13 00:28:52 +01:00
54e3f8d3f4
Fixes #181 and #341
28 lines
376 B
CSS
28 lines
376 B
CSS
.presetSection ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.presetSection ul li {
|
|
display: inline-block;
|
|
}
|
|
|
|
.button {
|
|
display: inline-block;
|
|
outline: none;
|
|
}
|
|
.active .button {
|
|
border-color: red;
|
|
}
|
|
.button:focus {
|
|
outline: none;
|
|
border-style: dotted;
|
|
}
|
|
.button::-moz-focus-inner {
|
|
border: 0;
|
|
}
|
|
|
|
.values tbody + tbody tr:first-child td {
|
|
padding-top: 1em;
|
|
} |