Open danmarsden opened 1 year ago
Hi @danmarsden . This was updated. Can you have a look?
didn't spot any further issues in the styles.css file, but keep in mind we don't usually come back again for another review until you upload the latest version to the moodle.org plugins db and hit the request re-approval button to add it to the review queue again.
in your styles.css you define a number of generic styles that could clash with core moodle code or other locations where simliar names are used. Take a look at some of the other question types in moodle core for how they target the css.
Moodle also helpfully adds a number of classes to the body tag based on the path that you can use such as: eg if you are have a file in mod/assign you would see the following class added to the body tag path-mod-assign so if you have an item with the class "filething" on the page you would target it like:
Please make sure your css classes in styles.css are specific enough so they cannot clash with other core code.
Note this is a blocker for plugins db approval as it is very hard to trace CSS that is too generic within a plugin.