mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Added print styles for links
This commit is contained in:
parent
d3ed8ccec6
commit
669d7cbc19
@ -151,6 +151,16 @@ kbd {
|
|||||||
&:active {
|
&:active {
|
||||||
color: $md-color-accent;
|
color: $md-color-accent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Add links for print
|
||||||
|
@media print {
|
||||||
|
|
||||||
|
// Show link reference
|
||||||
|
&::after {
|
||||||
|
color: $md-color-black--light;
|
||||||
|
content: " [" attr(href) "]";
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Inline code blocks
|
// Inline code blocks
|
||||||
@ -166,6 +176,12 @@ kbd {
|
|||||||
-0.4rem 0 0 $md-code-background;
|
-0.4rem 0 0 $md-code-background;
|
||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
box-decoration-break: clone;
|
box-decoration-break: clone;
|
||||||
|
|
||||||
|
// Remove box-shadows for print
|
||||||
|
@media print {
|
||||||
|
box-shadow: none;
|
||||||
|
box-decoration-break: initial;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Disable containing block inside headlines
|
// Disable containing block inside headlines
|
||||||
@ -302,4 +318,41 @@ kbd {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Data tables
|
||||||
|
table {
|
||||||
|
margin: 1.5em 0; // TODO: check spacing
|
||||||
|
font-size: ms(-1);
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
// Semi-cool overflow solution, in case JavaScript is not available
|
||||||
|
.no-js & {
|
||||||
|
display: inline-block;
|
||||||
|
max-width: 100%;
|
||||||
|
overflow: auto;
|
||||||
|
-webkit-overflow-scrolling: touch;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Table heading
|
||||||
|
th {
|
||||||
|
min-width: 10.0rem;
|
||||||
|
padding: 1.2rem 1.6rem;
|
||||||
|
border-bottom: 0.1rem solid $md-color-black--light;
|
||||||
|
color: $md-color-black;
|
||||||
|
font-weight: 700;
|
||||||
|
text-align: left;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Table cell
|
||||||
|
td {
|
||||||
|
padding: 1.2rem 1.6rem;
|
||||||
|
border-top: 0.1rem solid $md-color-black--lightest;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr:first-child td {
|
||||||
|
border-top: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user