mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* do not move the mention & flag button to the left of the search box when in search mode * fixed the margin & padding issues of the search box * fixed the member icon positioning issue and the expanded sidebar toggle issue * fixed remaining bugs when sidebar is in expanded mode * changed propTypes from func to bool
76 lines
1.3 KiB
SCSS
76 lines
1.3 KiB
SCSS
@charset 'UTF-8';
|
|
|
|
.inner-wrap {
|
|
&.move--left,
|
|
&.webrtc--show {
|
|
.search-bar__container {
|
|
display: none;
|
|
}
|
|
.search-btns {
|
|
display: none;
|
|
}
|
|
.header-list__members {
|
|
margin-right: -18px;
|
|
float: right;
|
|
padding-right: 0px !important;
|
|
}
|
|
}
|
|
|
|
&.move--right {
|
|
.search-bar__container {
|
|
display: none;
|
|
}
|
|
.search-btns {
|
|
display: none;
|
|
}
|
|
.header-list__members {
|
|
margin-right: -18px;
|
|
float: right;
|
|
padding-right: 0px !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.app__content {
|
|
@include display-flex;
|
|
@include flex-direction(column);
|
|
background: $white;
|
|
height: 100%;
|
|
margin-left: 220px;
|
|
padding-top: 50px;
|
|
position: relative;
|
|
|
|
.channel__wrap & {
|
|
padding-top: 0;
|
|
}
|
|
}
|
|
|
|
#post-create {
|
|
@include flex(0 0 auto);
|
|
background: $white;
|
|
width: 100%;
|
|
z-index: 3;
|
|
}
|
|
|
|
#archive-link-home {
|
|
@include flex(0 0 auto);
|
|
cursor: pointer;
|
|
font-size: 13px;
|
|
|
|
.fa {
|
|
@include opacity(.7);
|
|
font-size: 11px;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
display: block;
|
|
padding: 10px 20px;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.delete-message-text {
|
|
margin-top: 10px;
|
|
}
|