KNACSS/less/_08-print.less

95 lines
1.2 KiB
Plaintext
Raw Normal View History

2013-03-31 10:19:51 +02:00
/* quick print reset */
@media print {
2014-05-07 10:45:47 +02:00
2013-04-05 10:03:45 +02:00
* {
background: transparent !important;
box-shadow: none !important;
text-shadow: none !important;
}
2014-05-07 10:45:47 +02:00
2013-03-31 10:19:51 +02:00
body {
width: auto !important;
margin: auto !important;
font-family: serif;
font-size: 12pt;
background-color: #fff !important;
color: #333 !important;
}
2014-05-07 10:45:47 +02:00
2013-03-31 10:19:51 +02:00
p,
.p-like,
2013-03-31 10:19:51 +02:00
h1,
.h1-like,
2013-03-31 10:19:51 +02:00
h2,
.h2-like,
2013-03-31 10:19:51 +02:00
h3,
.h3-like,
2013-03-31 10:19:51 +02:00
h4,
.h4-like,
2013-03-31 10:19:51 +02:00
h5,
.h5-like,
2013-03-31 10:19:51 +02:00
h6,
.h6-like,
2013-03-31 10:19:51 +02:00
blockquote,
ul,
ol {
color: #000 !important;
margin: auto !important;
}
2014-05-07 10:45:47 +02:00
2013-03-31 10:19:51 +02:00
.print {
2015-03-30 11:38:20 +02:00
display: block;
2013-03-31 10:19:51 +02:00
}
2014-05-07 10:45:47 +02:00
.no-print {
display: none;
}
/* no orphans, no widows */
2013-03-31 10:19:51 +02:00
p,
.p-like,
2013-03-31 10:19:51 +02:00
blockquote {
orphans: 3;
2014-05-07 10:45:47 +02:00
widows: 3;
2013-03-31 10:19:51 +02:00
}
2014-05-07 10:45:47 +02:00
/* no breaks inside these elements */
2013-03-31 10:19:51 +02:00
blockquote,
ul,
ol {
page-break-inside: avoid;
2013-03-31 10:19:51 +02:00
}
2014-05-07 10:45:47 +02:00
/* page break before main headers */
h1,
.h1-like {
page-break-before: always;
2013-03-31 10:19:51 +02:00
}
2014-05-07 10:45:47 +02:00
/* no breaks after these elements */
2013-03-31 10:19:51 +02:00
h1,
.h1-like,
2013-03-31 10:19:51 +02:00
h2,
.h2-like,
2013-03-31 10:19:51 +02:00
h3,
.h3-like,
2013-03-31 10:19:51 +02:00
caption {
page-break-after: avoid;
2013-03-31 10:19:51 +02:00
}
2014-05-07 10:45:47 +02:00
2013-03-31 10:19:51 +02:00
a {
color: #000 !important;
text-decoration: underline !important;
}
2014-05-07 10:45:47 +02:00
/* displaying URLs */
a[href]::after {
content: " (" attr(href) ")";
2013-03-31 10:19:51 +02:00
}
2014-05-07 10:45:47 +02:00
a[href^="javascript:"]::after,
a[href^="#"]::after {
2013-04-05 10:03:45 +02:00
content: "";
}
2014-05-07 10:45:47 +02:00
}