mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
8c22831672
With the adjustments of `btn-transparent` in https://github.com/discourse/discourse/pull/24666, there are more buttons that could use this class instead of `btn-flat`. This mostly relates to `x` close buttons, but also includes composer and chat toggles. The primary difference between these styles is that `btn-transparent` never has a background, where `btn-flat` may have a hover or focus background.
31 lines
548 B
SCSS
31 lines
548 B
SCSS
.user-status-picker-wrap {
|
|
display: inline-flex;
|
|
width: 100%;
|
|
align-items: end;
|
|
|
|
.user-status-picker {
|
|
display: flex;
|
|
width: 100%;
|
|
border: 1px solid var(--primary-medium);
|
|
|
|
.btn-emoji {
|
|
margin: 3px;
|
|
width: 2.3em;
|
|
text-align: center;
|
|
}
|
|
|
|
.user-status-description {
|
|
width: 100%;
|
|
margin-bottom: 0;
|
|
border: none;
|
|
outline: none;
|
|
padding-left: 0;
|
|
}
|
|
}
|
|
|
|
.user-status-picker.focused {
|
|
border: 1px solid var(--tertiary);
|
|
outline: 1px solid var(--tertiary);
|
|
}
|
|
}
|