From 2f30a717a55e626562313b68af8231d52647ca5f Mon Sep 17 00:00:00 2001 From: Victor Shnayder Date: Tue, 2 Oct 2012 16:54:03 -0400 Subject: [PATCH] only display site status inside the courseware --- lms/static/sass/base/_base.scss | 29 ++++++++++++++++++++++++++ lms/static/sass/course/base/_base.scss | 25 ---------------------- 2 files changed, 29 insertions(+), 25 deletions(-) diff --git a/lms/static/sass/base/_base.scss b/lms/static/sass/base/_base.scss index 508b4bfd97..9958882c08 100644 --- a/lms/static/sass/base/_base.scss +++ b/lms/static/sass/base/_base.scss @@ -154,6 +154,35 @@ mark { color: #333; } +.site-status { + display: none; + padding: 10px; + background: -webkit-linear-gradient(top, rgba(0, 0, 0, .1), rgba(0, 0, 0, .0)) $pink; + box-shadow: 0 -1px 0 rgba(0, 0, 0, .3) inset; + font-size: 14px; + + .white-error-icon { + position: relative; + top: -4px; + float: left; + display: block; + width: 27px; + height: 24px; + margin-right: 15px; + background: url(../images/large-white-error-icon.png) no-repeat; + } + + .inner-wrapper { + margin: auto; + max-width: 1180px; + min-width: 760px; + } + + p { + line-height: 1.3; + color: #fff; + } +} diff --git a/lms/static/sass/course/base/_base.scss b/lms/static/sass/course/base/_base.scss index 21a3df6074..62237fd7a9 100644 --- a/lms/static/sass/course/base/_base.scss +++ b/lms/static/sass/course/base/_base.scss @@ -132,32 +132,7 @@ img { } .site-status { - padding: 10px; - background: -webkit-linear-gradient(top, rgba(0, 0, 0, .1), rgba(0, 0, 0, .0)) $pink; - box-shadow: 0 -1px 0 rgba(0, 0, 0, .3) inset; - font-size: 14px; - - .white-error-icon { - position: relative; - top: -4px; - float: left; display: block; - width: 27px; - height: 24px; - margin-right: 15px; - background: url(../images/large-white-error-icon.png) no-repeat; - } - - .inner-wrapper { - margin: auto; - max-width: 1180px; - min-width: 760px; - } - - p { - line-height: 1.3; - color: #fff; - } } .toast-notification {