course participants

Issue #46 new
Former user created an issue

I cannot view names without hovering on them. moodle v3.9

Comments (2)

  1. Leon Stringer

    This issue occurs in 3.8 (theme version 2019120701) and 3.9 (theme version 2020073000).

    This can be resolved by editing theme/enlightlite/style/enlightlite.css and removing either line 535 for v3.9:

     534 table.flexible thead th,
     535 table.flexible tbody th, /* <- remove this line */
     536 table.rolecap thead tr th,
     537 table.rolecap tr.header .header,
     538 .generaltable thead th {
     539     background: var(--color_primary);
     540 }
    

    or line 553 for v3.8:

     552 table.flexible thead th,
     553 table.flexible tbody th,  /* <- remove this line */
     554 table.rolecap thead tr th,
     555 table.rolecap tr.header .header,
     556 .generaltable thead th {
     557     background: var(--color_primary);
     558 }
    

    You then need to purge the theme cache.

    See also this forum discussion for a workaround.

  2. Log in to comment