styles not specific enough.
danmarsden opened this issue · 1 comments
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.
Moodle 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:
.path-mod-assign .filething {
color: red;
}
Please make sure your css classes in styles.css are specific enough so they cannot clash with other core code.
this doesn't seem to have been addressed. - I still see generic styles within your plugin that are not specific enough "autolink_popup" is too generic - if you are adding new classes specific to your filter you should be using classes that are specific to your plugin - like including the word "recitautolink" instead of just "autolink"