mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 06:53:39 +08:00
20 lines
354 B
SCSS
20 lines
354 B
SCSS
|
.form-kit {
|
||
|
&__control-menu {
|
||
|
justify-content: space-between;
|
||
|
min-width: var(--form-kit-small-input);
|
||
|
}
|
||
|
|
||
|
&__control-menu-item {
|
||
|
.btn:focus,
|
||
|
.btn:active {
|
||
|
.discourse-touch & {
|
||
|
color: var(--primary);
|
||
|
background: rgba(0, 0, 0, 0);
|
||
|
}
|
||
|
}
|
||
|
&:last-of-type .btn {
|
||
|
color: var(--tertiary);
|
||
|
}
|
||
|
}
|
||
|
}
|