Skip to content

Commit

Permalink
Merge pull request #14452 from vsn4ik/update_print_less
Browse files Browse the repository at this point in the history
Update print.less from source (html5-boilerplate).
  • Loading branch information
mdo committed Aug 28, 2014
2 parents fcf26d0 + 4c15fa8 commit d14d60e
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions less/print.less
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
//
// Basic print styles
// --------------------------------------------------
// Source: https://github.com/h5bp/html5-boilerplate/blob/master/css/main.css
// Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css

@media print {
* {
text-shadow: none !important;
color: #000 !important; // Black prints faster: h5bp.com/s
background: transparent !important;
color: #000 !important; // Black prints faster: h5bp.com/s
box-shadow: none !important;
text-shadow: none !important;
}

a,
Expand All @@ -24,9 +24,10 @@
content: " (" attr(title) ")";
}

// Don't show links for images, or javascript/internal links
a[href^="javascript:"]:after,
a[href^="#"]:after {
// Don't show links that are fragment identifiers,
// or use the `javascript:` pseudo protocol
a[href^="#"]:after,
a[href^="javascript:"]:after {
content: "";
}

Expand Down Expand Up @@ -71,12 +72,6 @@
.navbar {
display: none;
}
.table {
td,
th {
background-color: #fff !important;
}
}
.btn,
.dropup > .btn {
> .caret {
Expand All @@ -89,6 +84,11 @@

.table {
border-collapse: collapse !important;

td,
th {
background-color: #fff !important;
}
}
.table-bordered {
th,
Expand Down

0 comments on commit d14d60e

Please sign in to comment.