Files
mattermost/webapp/sass/layout/_content.scss
khawerrind c9eb23a3d4 PLT-3782 Do not move the "@" sign and flag icon to the left of search bar when opening the right hand sidebar (#4850)
* 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
2016-12-22 14:21:16 -03:00

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;
}