From 1980e39876926144e2be80c9d53fc8738426f47b Mon Sep 17 00:00:00 2001 From: benjamin wil Date: Sat, 13 Feb 2021 08:25:54 -0800 Subject: [PATCH] Remove unused _layout.scss file (#1661) --- .../public/gollum/stylesheets/_layout.scss | 83 ------------------- 1 file changed, 83 deletions(-) delete mode 100644 lib/gollum/public/gollum/stylesheets/_layout.scss diff --git a/lib/gollum/public/gollum/stylesheets/_layout.scss b/lib/gollum/public/gollum/stylesheets/_layout.scss deleted file mode 100644 index fdd8635e..00000000 --- a/lib/gollum/public/gollum/stylesheets/_layout.scss +++ /dev/null @@ -1,83 +0,0 @@ -// Describes base page layout - -/* @section wrapper */ -#wiki-wrapper { - margin: 0 auto; - overflow: visible; - width: 100%; - - @include desktop-breakpoint { - @include desktop-page-layout; - } -} - -/* @section content */ -#wiki-content { - height: 1%; - overflow: visible; - - .wrap { - height: 1%; - overflow: auto; - } - - &.uploading { - opacity: 0.5; - } - - p, li { - code { - white-space:pre-wrap; - word-wrap:break-word; - } - } - -} - -/* @section body */ -#wiki-body { - display: block; - width: 100%; - margin-right: 3%; - - @include largemobile-breakpoint { - float: left; - clear: left; - - .has-sidebar & { - width: $layout-with-sidebar - $layout-with-sidebar-leeway; - } - - .has-leftbar & { - float: right; - clear: right; - } - } -} - -/* @section sidebar */ -#wiki-sidebar { - @include largemobile-breakpoint { - width: $layout-sidebar; - - .has-leftbar & { - float: left; - } - - .has-rightbar & { - float: right; - } - } -} - -/* @section footer */ - -#wiki-footer { - clear: both; - - @include largemobile-breakpoint { - .has-sidebar & { - width: $layout-with-sidebar; - } - } -}