mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* PLT-5565 - Fixing theme colors not updating * PLT-4721 - Removing status ind for system messages * PLT-5735 - Fixing ellipsis in firefox * PLT-5010 - Removing extra space in channel modal * PLT-5584 - Inline image overrning edit textarea * PLT-5475 - Fixing tutorials on mobile * PLT-5142 - Disabling poitner events for status * PLT-5728 - Fixing emoji highlight on hover
59 lines
913 B
SCSS
59 lines
913 B
SCSS
@charset 'UTF-8';
|
|
|
|
.multi-select__container {
|
|
display: table;
|
|
padding: 0 15px;
|
|
width: 100%;
|
|
|
|
.Select {
|
|
display: table-cell;
|
|
padding-right: 15px;
|
|
vertical-align: top;
|
|
width: 100%;
|
|
}
|
|
|
|
.btn {
|
|
display: table-cell;
|
|
height: 36px;
|
|
min-width: 60px;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.Select-control {
|
|
border-radius: 1px;
|
|
}
|
|
|
|
.Select-value {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.Select-value-label {
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
|
|
.multi-select__help {
|
|
padding: 10px 15px 0;
|
|
|
|
> div:not(.multi-select__note),
|
|
> span {
|
|
@include opacity(.6);
|
|
}
|
|
}
|
|
|
|
.multi-select__note {
|
|
@include border-radius(3px);
|
|
display: table;
|
|
margin-top: 5px;
|
|
padding: 8px 13px;
|
|
width: 100%;
|
|
|
|
> div {
|
|
display: table-cell;
|
|
|
|
&.note__icon {
|
|
width: 15px;
|
|
}
|
|
}
|
|
}
|