Files
mattermost/webapp/sass/layout/_content.scss
Asaad Mahmood 6d6b813446 Ui ifxes (#5890)
* PLT-5975 - Back arrow in flag list cutting off

* PLT-6049 - Fixing pin icon color, and hover state

* PLT-5989 - Channel member and pin icon issue

* PLT-6067 - Pinned icon misaligned in firefox

* PLT-5885 - Adjusting icon spacing in modal
2017-03-29 21:07:39 -04:00

98 lines
2.1 KiB
SCSS

@charset 'UTF-8';
.inner-wrap {
&.move--left,
&.webrtc--show {
.search-bar__container {
display: none;
}
.search-btns {
display: none;
}
.header-list__right {
// the negative margin-right is used
// to prevent the icons in the header from
// moving to the left when the RHS is open
//
// the below z-index is used to ensure the icons
// stays on the top and don't get hidden by the
// search's input block
float: right;
margin-right: -18px;
padding-right: 0px !important;
position: relative;
z-index: 6;
}
}
&.move--right {
.search-bar__container {
display: none;
}
.search-btns {
display: none;
}
.header-list__right {
// the negative margin-right is used
// to prevent the icons in the header from
// moving to the left when the RHS is open
//
// the below z-index is used to ensure the icons
// stays on the top and don't get hidden by the
// search's input block
float: right;
margin-right: -18px;
padding-right: 0px !important;
position: relative;
z-index: 6;
}
}
}
.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;
}