From c8316e28943da1d21a21203cdc935eeda78b79b6 Mon Sep 17 00:00:00 2001 From: Jetha Chan Date: Wed, 12 Nov 2014 13:27:03 +0800 Subject: [PATCH] MDL-48169 themes: extra upgrade notes --- theme/upgrade.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/theme/upgrade.txt b/theme/upgrade.txt index 6a9bdba4c65..e18d630fd72 100644 --- a/theme/upgrade.txt +++ b/theme/upgrade.txt @@ -12,6 +12,10 @@ information provided here is intended especially for theme designer. * The functions search_listing() and search_pagination() in the core_course_management_renderer class take the searched string as an extra parameter - see MDL-46902. * Themes with non-fixed headers must have the .navbar class in their navbar in order for floating headers in the grader report to work - see MDL-46658. +* To accomodate the new gradebook, use of overflow: hidden or overflow-x: hidden CSS rules on DOM elements containing the + #user-grades table, visible at [Course administration -> Grades] is not recommended. Please use overflow: auto or + overflow: scroll instead, as this will handle medium to large courses with multiple activities better (more information available at https://docs.moodle.org/dev/Theme_upgrade_notes ). +* The new user menu can be added to themes by calling $OUTPUT->user_menu(); we recommend doing so in a backwards-compatible way (see https://docs.moodle.org/dev/Theme_upgrade_notes for more information). === 2.7 ===