summaryrefslogtreecommitdiffstats
path: root/webapp/sass/layout/_content.scss
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/sass/layout/_content.scss')
-rw-r--r--webapp/sass/layout/_content.scss95
1 files changed, 0 insertions, 95 deletions
diff --git a/webapp/sass/layout/_content.scss b/webapp/sass/layout/_content.scss
deleted file mode 100644
index 7bf6c08ad..000000000
--- a/webapp/sass/layout/_content.scss
+++ /dev/null
@@ -1,95 +0,0 @@
-@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;
-}
-