mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* E10 - Add announcement bar feature * Updates per feedback * Add component tests and snapshots * Update snapshots * Updating color picker UI (#6543) * Add class to body tag when banner is not dismissable and clean up localstorage items when banner changes * Fixing links (#6544) * Updating UI for fixed error bar (#6552) * Truncating text on fixed banner (#6561) * Plt 3466 - Error bar link states (#6577) * Updating error bar hover state * Updating error bar link states
70 lines
921 B
SCSS
70 lines
921 B
SCSS
@charset 'UTF-8';
|
|
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
background: $bg--gray;
|
|
height: 100%;
|
|
position: relative;
|
|
width: 100%;
|
|
|
|
&.error-bar--fixed {
|
|
padding-top: 22px;
|
|
}
|
|
}
|
|
|
|
.sticky {
|
|
background: $white;
|
|
|
|
> .container-fluid {
|
|
overflow: auto;
|
|
}
|
|
|
|
.inner-wrap {
|
|
> .row {
|
|
&.content {
|
|
margin-bottom: -89px;
|
|
min-height: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.inner-wrap {
|
|
height: 100%;
|
|
|
|
&.sticky {
|
|
overflow: auto;
|
|
}
|
|
|
|
> .row {
|
|
&.main {
|
|
height: 100%;
|
|
position: relative;
|
|
}
|
|
}
|
|
}
|
|
|
|
.container-fluid {
|
|
@include legacy-pie-clearfix;
|
|
height: 100%;
|
|
position: relative;
|
|
}
|
|
|
|
.channel-view {
|
|
@include clearfix;
|
|
height: 100%;
|
|
position: relative;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
|
|
&.rounded {
|
|
@include border-radius(100%);
|
|
}
|
|
}
|