Commit d4a28829 authored by Chris Rebert's avatar Chris Rebert

Merge pull request #106 from twbs/href-print

Remove half-assed inclusion of link URLs (hrefs) when printing
parents 6a2d4567 b9164b36
......@@ -20,21 +20,10 @@
text-decoration: underline;
}
a[href]:after {
content: " (" attr(href) ")";
}
abbr[title]:after {
content: " (" attr(title) ")";
}
// Don't show links that are fragment identifiers,
// or use the `javascript:` pseudo protocol
a[href^="#"]:after,
a[href^="javascript:"]:after {
content: "";
}
pre,
blockquote {
border: 1px solid #999;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment