2021-04-29 02:27:06 +00:00
|
|
|
.ButtonSmallX {
|
|
|
|
border-width: 0;
|
|
|
|
border-radius: 9999px;
|
|
|
|
line-height: 0;
|
|
|
|
height: 18px;
|
|
|
|
width: 18px;
|
|
|
|
vertical-align: baseline;
|
|
|
|
background-color: var(--bg-field-off);
|
|
|
|
color: var(--fg-field-off);
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
top: -1px;
|
|
|
|
}
|
|
|
|
|
2021-05-18 14:35:32 +00:00
|
|
|
.ButtonSmallX:hover {
|
2021-04-29 02:27:06 +00:00
|
|
|
background-color: var(--bg-field-on);
|
|
|
|
color: var(--fg-field-on);
|
|
|
|
}
|
|
|
|
|
2021-05-18 14:35:32 +00:00
|
|
|
.ButtonSmallX:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2021-04-29 02:27:06 +00:00
|
|
|
.ButtonSmallX:focus-visible {
|
|
|
|
outline: 2px dashed var(--outline);
|
|
|
|
}
|