From 56b5417e1374f66bc62ee87e41bb216103fc8a1f Mon Sep 17 00:00:00 2001 From: Hamza Munir <hamxa.muneer@gmail.com> Date: Tue, 3 Apr 2018 15:57:59 +0500 Subject: [PATCH] Border Appearing on wiki and Progress page. A generic css rule like this ".container>div" is present on the wiki page. Due to which these borders were showing around the footer on those pages. added a fix for that in this PR. LEARNER-4858 --- lms/static/sass/shared/_footer-edx.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lms/static/sass/shared/_footer-edx.scss b/lms/static/sass/shared/_footer-edx.scss index 7b84ed046a5..8bb2426553a 100644 --- a/lms/static/sass/shared/_footer-edx.scss +++ b/lms/static/sass/shared/_footer-edx.scss @@ -19,6 +19,14 @@ footer#footer-edx-v3 { padding: $baseline*0.75 0; border-top: 1px solid $courseware-button-border-color; + // There is a generic style similar applying div and box shadow on the wiki page of course. + // so disabling that design for footer in the lines below + .container > div { + border: none; + box-shadow: none; + background: inherit; + } + .column-styles { position: relative; width: 100%; -- GitLab