mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 13:04:19 +00:00
26 lines
501 B
CSS
26 lines
501 B
CSS
.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;
|
|
}
|
|
|
|
.ButtonSmallX:hover {
|
|
background-color: var(--bg-field-on);
|
|
color: var(--fg-field-on);
|
|
}
|
|
|
|
.ButtonSmallX:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.ButtonSmallX:focus-visible {
|
|
outline: 2px dashed var(--outline);
|
|
}
|