Commit 4c15fa86 authored by vsn4ik's avatar vsn4ik
Browse files

Update print.less from source (html5-boilerplate). Simplyfy table style.

parent 55dd9646
5 merge requests!28721Hot test,!14452Update print.less from source (html5-boilerplate).,!16605Test pull please ignore,!22103test,!25326Adjust examples
Showing with 12 additions and 12 deletions
+12 -12
// //
// Basic print styles // 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 { @media print {
* { * {
text-shadow: none !important;
color: #000 !important; // Black prints faster: h5bp.com/s
background: transparent !important; background: transparent !important;
color: #000 !important; // Black prints faster: h5bp.com/s
box-shadow: none !important; box-shadow: none !important;
text-shadow: none !important;
} }
a, a,
...@@ -25,9 +25,10 @@ ...@@ -25,9 +25,10 @@
content: " (" attr(title) ")"; content: " (" attr(title) ")";
} }
// Don't show links for images, or javascript/internal links // Don't show links that are fragment identifiers,
a[href^="javascript:"]:after, // or use the `javascript:` pseudo protocol
a[href^="#"]:after { a[href^="#"]:after,
a[href^="javascript:"]:after {
content: ""; content: "";
} }
...@@ -72,12 +73,6 @@ ...@@ -72,12 +73,6 @@
.navbar { .navbar {
display: none; display: none;
} }
.table {
td,
th {
background-color: #fff !important;
}
}
.btn, .btn,
.dropup > .btn { .dropup > .btn {
> .caret { > .caret {
...@@ -90,6 +85,11 @@ ...@@ -90,6 +85,11 @@
.table { .table {
border-collapse: collapse !important; border-collapse: collapse !important;
td,
th {
background-color: #fff !important;
}
} }
.table-bordered { .table-bordered {
th, th,
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment