diff --git a/renderhelpers.php b/renderhelpers.php index b8d12fb..918af32 100644 --- a/renderhelpers.php +++ b/renderhelpers.php @@ -127,7 +127,7 @@ class user_sessions_cells_html_generator extends user_sessions_cells_generator { protected function construct_existing_status_cell($text) { $this->close_open_cell_if_needed(); - $this->cells[] = $text; + $this->cells[] = html_writer::span($text, 'attendancestatus-'.$text); } protected function construct_hidden_status_cell($text) { diff --git a/styles.css b/styles.css index a57c33d..3137d7d 100644 --- a/styles.css +++ b/styles.css @@ -152,3 +152,19 @@ .path-mod-attendance .remarkholder:hover .remarkcontent { display: inline-block; } + +.path-mod-attendance .attendancestatus-P { + color: green; +} + +.path-mod-attendance .attendancestatus-E { + color: #00AEE3; +} + +.path-mod-attendance .attendancestatus-L { + color: #F7931E; +} + +.path-mod-attendance .attendancestatus-A { + color: red; +} \ No newline at end of file