-
Sub-task
-
Resolution: Fixed
-
Minor
-
2.5
-
MOODLE_25_STABLE
-
MOODLE_25_STABLE, MOODLE_26_STABLE
-
wip-
MDL-40321_master -
-
The Bootstrap CSS pulls in some print styles that append the destination URL to links in the printout. This is helpful for printed content, but needs some kind of exception to stop it doing it for Moodle internal links.
I added an exception for our institution by using this rule:
a[href^="http://startofyourmoodle.url.com"]:after
{ content:""}But that doesn't generalise to any Moodle. Perhaps completely negating the print rule (which is in theme/bootstrapbase/less/reset.less) might be a good idea. The rule could then be re-instated but targetting only Moodle content in some way?