Mobile app - Lesson list item

Mobile app - Lesson list item

by Dan Thomson -
Number of replies: 3

Any idea why list items on a lesson page would be a larger font size than paragraph text using the mobile app.

Moodle 3.4.1 on Windows

ios 11.2.6 on iphone8

Average of ratings: -
In reply to Dan Thomson

Re: Mobile app - Lesson list item

by Dan Thomson -

Found the link for the mobile prototype site under Moodle Mobile Themes -> Useful Selectors to inspect a few things and made some CSS adjustments.

If i had gotten past the warning message in the first place, I guess I wouldn't have had to ask this question.

In reply to Dan Thomson

Re: Mobile app - Lesson list item

by Juan Leyva -
Picture of Core developers Picture of Moodle HQ Picture of Particularly helpful Moodlers Picture of Plugin developers Picture of Testers

Hi Dan,

could you share here your CSS changes? We'll check if it's a bug in the app.

In reply to Juan Leyva

Re: Mobile app - Lesson list item

by Dan Thomson -

I guess the question should have been "why is the paragraph text smaller?"

This will make it 16px

//make paragraph the same size and color
.item p {
	font-size: inherit;
	color: inherit;
}

...which overrides:

.item p, .mm-grades-table .itemcenter p {
    color: #666;
    font-size: 14px;
    margin-bottom: 2px;
}