Group area cutting off since color edits and upgrade to 3.1

Group area cutting off since color edits and upgrade to 3.1

by Erin Blauvelt -
Number of replies: 2

Moodle  Version: Moodle 3.1.7+ (Build: 20170714)

Theme: Essential 3.1.1.11 (Build: 2016061720)

I'm unsure if this is a theme issue or not, but I figured I would begin here. A few months ago, we upgraded to 3.1 and a month ago we did a decent rework of the color settings. We aren't sure when this began occurring, but going into the Group tool yields the attached results. The text at the bottom of the Groups main area is cut off. It happens in both Firefox and Chrome and resizing my browser doesn't seem to make any difference.

Any ideas? If I should be posting this in a different area, let me know.

Thanks!

-Erin

Attachment groups_block_cut_off.jpg
Average of ratings: -
In reply to Erin Blauvelt

Re: Group area cutting off since color edits and upgrade to 3.1

by Gareth J Barnard -
Picture of Core developers Picture of Particularly helpful Moodlers Picture of Plugin developers

Hi Erin,

It appears to be an 'issue' with versions for M3.1 and above.  All to do with 'float' CSS in core and yet a slightly different way Essential works.  So please add the following CSS to the custom CSS setting in the theme and confirm it works:

#groupeditform .groups, #groupeditform .members {
    float: none;
    display: inline-block;
    vertical-align: top;
}

then I'll put it in a release at some point.

Ref: https://github.com/gjb2048/moodle-theme_essential/issues/846.

Cheers,

Gareth

In reply to Gareth J Barnard

Re: Group area cutting off since color edits and upgrade to 3.1

by Erin Blauvelt -

It works! Thanks so much!