1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2025-01-13 06:29:37 +01:00

114 lines
3.3 KiB
SCSS
Raw Normal View History

////
/// Copyright (c) 2016-2020 Martin Donath <martin.donath@squidfunk.com>
///
/// Permission is hereby granted, free of charge, to any person obtaining a
/// copy of this software and associated documentation files (the "Software"),
/// to deal in the Software without restriction, including without limitation
/// the rights to use, copy, modify, merge, publish, distribute, sublicense,
/// and/or sell copies of the Software, and to permit persons to whom the
/// Software is furnished to do so, subject to the following conditions:
///
/// The above copyright notice and this permission notice shall be included in
/// all copies or substantial portions of the Software.
///
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
/// DEALINGS
////
2016-01-28 23:27:15 +01:00
2016-09-04 17:32:12 +02:00
// ----------------------------------------------------------------------------
// Rules
2016-09-04 17:32:12 +02:00
// ----------------------------------------------------------------------------
2016-01-28 23:27:15 +01:00
2016-11-02 19:21:14 +01:00
// Scoped in typesetted content to match specificity of regular content
2016-09-23 20:26:27 +02:00
.md-typeset {
2016-01-28 23:27:15 +01:00
// Permalinks extension
2016-08-07 18:01:56 +02:00
.headerlink {
display: inline-block;
margin-left: px2rem(10px);
transform: translate(0, px2rem(5px));
// Hack: If we don't set visibility hidden, the text content of the node
// will include the headerlink character, which is why Google indexes them.
visibility: hidden;
opacity: 0;
transition:
transform 250ms 250ms,
color 250ms,
2020-02-25 20:25:05 +01:00
opacity 125ms 250ms,
visibility 0ms 500ms;
2016-10-24 18:02:53 +02:00
// Adjust for RTL languages
[dir="rtl"] & {
margin-right: px2rem(10px);
margin-left: initial;
}
// Higher specificity for color due to palettes integration
html body & {
2020-02-25 20:25:05 +01:00
color: var(--md-default-fg-color--lighter);
}
2016-10-24 18:02:53 +02:00
// Hide for print
@media print {
display: none;
}
2016-01-28 23:27:15 +01:00
}
// Make permalink visible on hover
:hover .headerlink,
:target .headerlink,
.headerlink:focus {
transform: translate(0, 0);
visibility: visible;
opacity: 1;
transition:
transform 250ms 250ms,
color 250ms,
2020-02-25 20:25:05 +01:00
opacity 125ms 250ms,
visibility 0ms;
}
// Active or targeted permalink
.headerlink:focus,
.headerlink:hover,
:target .headerlink {
2020-02-25 20:25:05 +01:00
color: var(--md-accent-fg-color);
}
// Correct anchor offset for link blurring
2016-09-02 22:59:14 +02:00
@each $level, $delta in (
h1 h2 h3: 8px,
h4: 9px,
h5 h6: 12px,
2016-09-02 22:59:14 +02:00
) {
%#{nth($level, 1)} {
2016-12-27 16:10:06 +01:00
// Un-targeted anchor
&::before {
display: block;
margin-top: -1 * px2rem($delta);
padding-top: px2rem($delta);
content: "";
}
// Targeted anchor (48px from header, 12px from sidebar offset)
&:target::before {
margin-top: -1 * px2rem(48px + 12px + $delta);
padding-top: px2rem(48px + 12px + $delta);
}
}
// Define levels
@for $n from 1 through length($level) {
#{nth($level, $n)}[id] {
@extend %#{nth($level, 1)};
}
2016-09-02 22:59:14 +02:00
}
}
}