diff --git a/Patterns/HTML/Base/Base.css b/Patterns/HTML/Base/Base.css index 831d821..2e7c748 100644 --- a/Patterns/HTML/Base/Base.css +++ b/Patterns/HTML/Base/Base.css @@ -25,8 +25,15 @@ body { -webkit-font-smoothing: antialiased; } -a.function-link:link, a.function-link:visited { - text-decoration: black solid underline; +@media screen { + a.function-link:link, a.function-link:visited { + text-decoration: black solid underline; + } +} +@media print { + a.function-link { + text-decoration: none; + } } a.function-link:active, a.function-link:hover { font-weight: 700 diff --git a/Patterns/HTML/Popups/Popups.css b/Patterns/HTML/Popups/Popups.css index 6ba660a..58b9f62 100644 --- a/Patterns/HTML/Popups/Popups.css +++ b/Patterns/HTML/Popups/Popups.css @@ -9,6 +9,12 @@ user-select: none; } +@media print { + .popup { + display: none; + } +} + /* The actual popup */ .popup .popuptext { visibility: hidden;