mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Add user access token UI * Fix enter press and update mattermost-redux * Updating UI for access token stuff (#7066) * Revert segment key
96 lines
2.0 KiB
SCSS
96 lines
2.0 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;
|
|
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;
|
|
}
|
|
}
|
|
|
|
#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;
|
|
}
|
|
|
|
.col-sm-auto {
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
}
|
|
|