From 00bd11b53936db64431c05c94a9ecbbefd9d970c Mon Sep 17 00:00:00 2001 From: Kevin Percy Date: Tue, 19 Sep 2023 18:13:42 +0800 Subject: [PATCH 1/2] MDL-78813 gradereport_grader: Fixed help icon covering course average --- grade/report/grader/styles.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/grade/report/grader/styles.css b/grade/report/grader/styles.css index 37ffc5407a5..9aac3cfda36 100644 --- a/grade/report/grader/styles.css +++ b/grade/report/grader/styles.css @@ -201,3 +201,14 @@ border: 1px solid #ccc; border-radius: 4px; } + +@media only screen and (min-width: 768px) { + .path-grade-report-grader .gradeparent table { + padding-right: 6em; + border-top-width: 0; + } + + .path-grade-report-grader .gradeparent table tr:first-of-type th { + border-top-width: 1px; + } +} From ebf12946d6eb0e9d14b933a9998cd878764d690f Mon Sep 17 00:00:00 2001 From: Mihail Geshoski Date: Tue, 26 Sep 2023 13:23:00 +0200 Subject: [PATCH 2/2] MDL-78813 gradereport_grader: Revert border-top-width css change Revert the modification of the border-top-width css attribute to the grader table and the table header. This change seems to be unnecessary. --- grade/report/grader/styles.css | 5 ----- 1 file changed, 5 deletions(-) diff --git a/grade/report/grader/styles.css b/grade/report/grader/styles.css index 9aac3cfda36..142056058b1 100644 --- a/grade/report/grader/styles.css +++ b/grade/report/grader/styles.css @@ -205,10 +205,5 @@ @media only screen and (min-width: 768px) { .path-grade-report-grader .gradeparent table { padding-right: 6em; - border-top-width: 0; - } - - .path-grade-report-grader .gradeparent table tr:first-of-type th { - border-top-width: 1px; } }