diff --git a/theme/formal_white/fw_color.css b/theme/formal_white/fw_color.css index adfb6d63eee..4ef104df8c5 100644 --- a/theme/formal_white/fw_color.css +++ b/theme/formal_white/fw_color.css @@ -407,6 +407,18 @@ table.minicalendar tr td.weekend { #mod-forum-index .unread { } +/*** + *** Grade + ***/ + +.grade-report-grader table#user-grades td.cell span.gradepass { + background-color: #C2EBBD; +} + +.grade-report-grader table#user-grades td.cell span.gradefail { + background-color: #EBC4BD; +} + /*** *** User ***/ diff --git a/theme/formal_white/fw_layout.css b/theme/formal_white/fw_layout.css index 250e89392b5..c548c07e584 100644 --- a/theme/formal_white/fw_layout.css +++ b/theme/formal_white/fw_layout.css @@ -316,6 +316,11 @@ table.calendarmonth tr td { line-height: 22px; } +#course-view .section td.content ul.section.img-text li.activity.label { + line-height: 16px; + margin-bottom: 5px; +} + .coursebox .info .name { padding-bottom: 5px; } diff --git a/theme/formal_white/styles.php b/theme/formal_white/styles.php index bd329f640b5..fd3271b72d4 100644 --- a/theme/formal_white/styles.php +++ b/theme/formal_white/styles.php @@ -12,7 +12,8 @@ require_once("../../config.php"); // Load up the Moodle libraries $themename = basename(dirname(__FILE__)); // Name of the folder we are in $forceconfig = optional_param('forceconfig', '', PARAM_FILE); // Get config from this theme + $lang = optional_param('lang', '', PARAM_FILE); // Look for styles in this language - style_sheet_setup(time(), $lifetime, $themename, $forceconfig); + style_sheet_setup(time(), $lifetime, $themename, $forceconfig, $lang); ?>