From 34ef8466d0682ab7b9525ec841f4a8735bb2238e Mon Sep 17 00:00:00 2001 From: Peter Date: Tue, 16 Oct 2018 10:48:31 +0800 Subject: [PATCH] MDL-63042 core_theme: Change the background color --- theme/boost/scss/moodle.scss | 1 + theme/boost/scss/moodle/dashboard.scss | 4 ++++ theme/boost/style/moodle.css | 3 +++ 3 files changed, 8 insertions(+) create mode 100644 theme/boost/scss/moodle/dashboard.scss diff --git a/theme/boost/scss/moodle.scss b/theme/boost/scss/moodle.scss index d5c843de9ff..1b9da99d353 100644 --- a/theme/boost/scss/moodle.scss +++ b/theme/boost/scss/moodle.scss @@ -16,6 +16,7 @@ $breadcrumb-divider-rtl: "◀" !default; @import "moodle/calendar"; @import "moodle/course"; @import "moodle/drawer"; +@import "moodle/dashboard"; @import "moodle/filemanager"; @import "moodle/message"; @import "moodle/question"; diff --git a/theme/boost/scss/moodle/dashboard.scss b/theme/boost/scss/moodle/dashboard.scss new file mode 100644 index 00000000000..64b657320af --- /dev/null +++ b/theme/boost/scss/moodle/dashboard.scss @@ -0,0 +1,4 @@ +// Background color change as of MDL-63042 +#page-my-index { + background-color: $gray-100; +} \ No newline at end of file diff --git a/theme/boost/style/moodle.css b/theme/boost/style/moodle.css index b430c6ea3cb..77e91a211e3 100644 --- a/theme/boost/style/moodle.css +++ b/theme/boost/style/moodle.css @@ -12620,6 +12620,9 @@ body.drawer-ease { body.drawer-open-right { margin-right: 285px; } } +#page-my-index { + background-color: #f8f9fa; } + .fp-content-center { height: 100%; width: 100%; -- 2.43.0