Cohort sync form way to small

Cohort sync form way to small

by Richard van Iwaarden -
Number of replies: 3
Picture of Particularly helpful Moodlers

The pull down menu is way to small in Moodle. It offers max 15 characters.

How to increase this with CSS? I found some ways, but It usually addresses many other places in Moodle with a pull-down menu.

I hate these pull-down menu anyways. They are not suitable for big Moodle installations.



Average of ratings: -
In reply to Richard van Iwaarden

Cohort sync form way to small

by John Provasnik -
Picture of Particularly helpful Moodlers Picture of Testers
What have you discovered so far with CSS?
Could you add this in the front to limit it to just that type of page?
#page-enrol-editinstance
In reply to John Provasnik

Re: Cohort sync form way to small

by Richard van Iwaarden -
Picture of Particularly helpful Moodlers
I can add this:

div.d-md-inline-block  {
width: 500px;
}

Where does your code go in this?
In reply to Richard van Iwaarden

Re: Cohort sync form way to small

by John Provasnik -
Picture of Particularly helpful Moodlers Picture of Testers
If you are happy with that code on that page, then add my piece to the front to limit it to just that page:

#page-enrol-editinstance div.d-md-inline-block {
width: 500px;
}