Admin Pages Printing With Urls

This has been bugging me for a while so I finally decided to do some research on it. So when I go to print a page in the admin section, it jumbles it up by adding the url to every clickable link on the page. It seems that there is some code in a CSS style sheet (not 100% sure) to the effect of:

a[href]:after{content:" (" attr(href) ")"}

This prints the link after the text. If I change it to content: none, it should not print. But I have searched all of the style sheets for href and can't find anything. Anyone have any idea where this is being triggered and how to disable it?

Hello Ed

/design/backend/css/lib/twitterbootstrap/reset.less

Best regards

Robert.

Hello Ed

/design/backend/css/lib/twitterbootstrap/reset.less

Best regards

Robert.

Thanks!

Commented out the following to "fix" the printing

a[href]:after {
content: " (" attr(href) ")";
}
abbr[title]:after {
content: " (" attr(title) ")";
}
so the new code is:
//a[href]:after {
// content: " (" attr(href) ")";
//}
//abbr[title]:after {
// content: " (" attr(title) ")";
//}