From 34c34603b6e8b97f7119053b3f5aad6ce735b1ca Mon Sep 17 00:00:00 2001 From: Brendan Heywood Date: Thu, 14 Nov 2019 10:41:51 +1100 Subject: [PATCH] Added docs for themes --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index d7af2ae..cc9460d 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,7 @@ * [Moodle Requirements](#moodle-requirements) * [Screenshots](#screenshots) * [Installation](#installation) +* [Theme configuration](#theme-configuration) * [How to use](#how-to-use) * [Quick Guide](#quick-guide) * [Why is it an auth plugin?](#why-it-is-an-auth-plugin) @@ -88,6 +89,20 @@ if (file_exists(__DIR__.'/auth/outage/bootstrap.php')) { } ``` +Theme configuration +------------------- + +This plugin must work gracefully with your theme, but every theme can be different so it's impossible to get this right out of the box (other than with the default moodle theme Boost). + +There is an admin setting which allows you to add or override and css to fix css issues. Typically these include properly pushing the page down when the outage notification bar is visible, including making this work with fixed headers and when the hamburger menu is open / closed and at different responsive breakpoints. + +This can be found at: + +`Dashboard / Site administration / Plugins / Authentication / Outage manager / Settings` + + + + How to use ----------