Advertisement
nbbeliard

Bootstrap : désactivation de certaines fonctions print

Sep 28th, 2015
3,469
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.53 KB | None | 0 0
  1. @media print {
  2.     *,
  3.     *:before,
  4.     *:after {
  5.         /*!color: #000 !important;*/
  6.         text-shadow: none !important;
  7.         /*!background: transparent !important;*/
  8.         -webkit-box-shadow: none !important;
  9.         box-shadow: none !important;
  10.     }
  11.     a,
  12.     a:visited {
  13.             text-decoration: underline;
  14.     }
  15.     a[href]:after {
  16.             /*!content: " (" attr(href) ")";*/
  17.     }
  18.     abbr[title]:after {
  19.             /*!content: " (" attr(title) ")";*/
  20.     }
  21.     a[href^="#"]:after,
  22.     a[href^="javascript:"]:after {
  23.         /*!content: "";*/
  24.     }
  25. (...)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement