2016-02-06 15:28:18 -05:00
|
|
|
// scss-lint:disable ImportantRule, QualifyingElement
|
|
|
|
|
2014-12-11 15:05:29 -05:00
|
|
|
// Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css
|
2014-10-12 16:40:45 -04:00
|
|
|
|
|
|
|
// ==========================================================================
|
|
|
|
// Print styles.
|
2016-01-21 02:35:28 -05:00
|
|
|
// Inlined to avoid the additional HTTP request:
|
|
|
|
// http://www.phpied.com/delay-loading-your-print-css/
|
2014-10-12 16:40:45 -04:00
|
|
|
// ==========================================================================
|
2013-02-28 22:42:51 -05:00
|
|
|
|
2016-02-07 00:35:18 -05:00
|
|
|
@if $enable-print-styles {
|
|
|
|
@media print {
|
|
|
|
*,
|
|
|
|
*::before,
|
|
|
|
*::after,
|
|
|
|
*::first-letter,
|
|
|
|
*::first-line {
|
|
|
|
// Bootstrap specific; comment out `color` and `background`
|
|
|
|
//color: #000 !important; // Black prints faster:
|
|
|
|
// http://www.sanbeiji.com/archives/953
|
|
|
|
text-shadow: none !important;
|
|
|
|
//background: transparent !important;
|
|
|
|
box-shadow: none !important;
|
|
|
|
}
|
2014-12-11 15:05:29 -05:00
|
|
|
|
2016-02-07 00:35:18 -05:00
|
|
|
a,
|
|
|
|
a:visited {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2014-12-11 15:05:29 -05:00
|
|
|
|
2016-02-07 00:35:18 -05:00
|
|
|
// Bootstrap specific; comment the following selector out
|
|
|
|
//a[href]::after {
|
|
|
|
// content: " (" attr(href) ")";
|
|
|
|
//}
|
2016-01-21 02:35:28 -05:00
|
|
|
|
2016-02-07 00:35:18 -05:00
|
|
|
abbr[title]::after {
|
|
|
|
content: " (" attr(title) ")";
|
|
|
|
}
|
2014-12-11 15:05:29 -05:00
|
|
|
|
2016-02-07 00:35:18 -05:00
|
|
|
// Bootstrap specific; comment the following selector out
|
|
|
|
//
|
|
|
|
// 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: $border-width solid #999; // Bootstrap custom code; using `$border-width` instead of 1px
|
|
|
|
page-break-inside: avoid;
|
|
|
|
}
|
2014-12-11 15:05:29 -05:00
|
|
|
|
2016-02-07 00:35:18 -05:00
|
|
|
//
|
|
|
|
// Printing Tables:
|
|
|
|
// http://css-discuss.incutio.com/wiki/Printing_Tables
|
|
|
|
//
|
2016-01-21 02:35:28 -05:00
|
|
|
|
2016-02-07 00:35:18 -05:00
|
|
|
thead {
|
|
|
|
display: table-header-group;
|
|
|
|
}
|
2014-12-11 15:05:29 -05:00
|
|
|
|
2016-02-07 00:35:18 -05:00
|
|
|
tr,
|
|
|
|
img {
|
|
|
|
page-break-inside: avoid;
|
|
|
|
}
|
2014-12-11 15:05:29 -05:00
|
|
|
|
2016-02-07 00:35:18 -05:00
|
|
|
p,
|
|
|
|
h2,
|
|
|
|
h3 {
|
|
|
|
orphans: 3;
|
|
|
|
widows: 3;
|
|
|
|
}
|
2014-12-11 15:05:29 -05:00
|
|
|
|
2016-02-07 00:35:18 -05:00
|
|
|
h2,
|
|
|
|
h3 {
|
|
|
|
page-break-after: avoid;
|
|
|
|
}
|
2014-12-11 15:05:29 -05:00
|
|
|
|
2016-02-07 00:35:18 -05:00
|
|
|
// Bootstrap specific changes start
|
2014-12-11 15:05:29 -05:00
|
|
|
|
2016-02-07 00:35:18 -05:00
|
|
|
// Bootstrap components
|
|
|
|
.navbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.btn,
|
|
|
|
.dropup > .btn {
|
|
|
|
> .caret {
|
|
|
|
border-top-color: #000 !important;
|
|
|
|
}
|
|
|
|
}
|
2016-02-11 03:54:30 -05:00
|
|
|
.tag {
|
2016-02-07 00:35:18 -05:00
|
|
|
border: $border-width solid #000;
|
2014-12-11 15:05:29 -05:00
|
|
|
}
|
|
|
|
|
2016-02-07 00:35:18 -05:00
|
|
|
.table {
|
|
|
|
border-collapse: collapse !important;
|
2014-12-11 15:05:29 -05:00
|
|
|
|
2016-02-07 00:35:18 -05:00
|
|
|
td,
|
|
|
|
th {
|
|
|
|
background-color: #fff !important;
|
|
|
|
}
|
2014-12-11 15:05:29 -05:00
|
|
|
}
|
2016-02-07 00:35:18 -05:00
|
|
|
.table-bordered {
|
|
|
|
th,
|
|
|
|
td {
|
|
|
|
border: 1px solid #ddd !important;
|
|
|
|
}
|
2014-12-11 15:05:29 -05:00
|
|
|
}
|
|
|
|
|
2016-02-07 00:35:18 -05:00
|
|
|
// Bootstrap specific changes end
|
|
|
|
}
|
2013-02-28 22:42:51 -05:00
|
|
|
}
|