Add global CSS to hide core maintenance warning

- The core maintenance mode message is redundant and appears
      in some circumstances that are undesirable - e.g. inside
      active SCORM activities or prior to the defined warning
      message period.
This commit is contained in:
Adam Riddell
2017-07-13 11:23:18 +10:00
parent 405a5cf518
commit 55e7836cfd

8
styles.css Normal file
View File

@@ -0,0 +1,8 @@
/**
* Globally supress core Moodle maintenance warning message.
*
* Note that this can be explicitly overridden by themes.
*/
.box.moodle-has-zindex.maintenancewarning {
display: none;
}