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

487 lines
12 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
// Navigation container
2016-08-07 18:01:56 +02:00
.md-nav {
font-size: px2rem(14px);
line-height: 1.3;
2016-01-28 23:27:15 +01:00
// List title
2016-09-04 18:13:17 +02:00
&__title {
2016-09-23 11:56:25 +02:00
display: block;
padding: 0 px2rem(12px);
2016-09-23 11:56:25 +02:00
font-weight: 700;
text-overflow: ellipsis;
overflow: hidden;
2016-01-28 23:27:15 +01:00
// Hide buttons by default
.md-nav__button {
2016-09-23 11:56:25 +02:00
display: none;
// Stretch images
img {
width: 100%;
height: auto;
}
2016-12-28 16:20:52 +01:00
// Logo
&.md-logo svg {
// Image or icon
img,
svg {
display: block;
width: px2rem(24px);
height: px2rem(24px);
fill: currentColor;
}
}
2016-12-28 16:20:52 +01:00
}
2016-08-07 18:01:56 +02:00
}
2016-09-04 17:32:12 +02:00
// List of items
2016-08-07 18:01:56 +02:00
&__list {
2016-09-04 18:13:17 +02:00
margin: 0;
padding: 0;
2016-08-07 18:01:56 +02:00
list-style: none;
2016-09-23 11:56:25 +02:00
}
2016-01-28 23:27:15 +01:00
2016-09-23 11:56:25 +02:00
// List item
&__item {
padding: 0 px2rem(12px);
2016-09-23 11:56:25 +02:00
// Add bottom spacing to last item
&:last-child {
padding-bottom: px2rem(12px);
2016-01-28 23:27:15 +01:00
}
2016-09-23 11:56:25 +02:00
// 2nd+ level items
& & {
padding-right: 0;
2016-08-07 18:01:56 +02:00
// Adjust for right-to-left languages
[dir="rtl"] & {
padding-right: px2rem(12px);
padding-left: 0;
}
2016-09-23 11:56:25 +02:00
// Remove bottom spacing for nested items
&:last-child {
padding-bottom: 0;
}
}
2016-08-07 18:01:56 +02:00
}
2016-09-04 17:32:12 +02:00
// Link inside item
2016-08-07 18:01:56 +02:00
&__link {
display: block;
margin-top: 0.625em;
transition: color 125ms;
2016-08-07 18:01:56 +02:00
text-overflow: ellipsis;
2016-09-23 11:56:25 +02:00
cursor: pointer;
overflow: hidden;
scroll-snap-align: start;
// Hide link to table of contents by default - this will only match the
// table of contents inside the drawer below and including tablet portrait
html &[for="__toc"] {
2016-09-23 11:56:25 +02:00
display: none;
// Hide table of contents by default
& ~ .md-nav {
2016-09-23 11:56:25 +02:00
display: none;
}
}
// Blurred link
2016-12-15 15:55:40 +01:00
&[data-md-state="blur"] {
2016-08-07 18:01:56 +02:00
color: $md-color-black--light;
}
2016-01-28 23:27:15 +01:00
// Active link
.md-nav__item &--active {
color: $md-color-primary;
}
// Reset active color for nested list titles
.md-nav__item--nested > & {
color: inherit;
}
2017-02-12 18:31:05 +01:00
// Focused or hovered link
&:focus,
&:hover {
2016-08-07 18:01:56 +02:00
color: $md-color-accent;
2016-01-28 23:27:15 +01:00
}
}
2016-09-23 11:56:25 +02:00
// Repository containing source
&__source {
display: none;
}
2016-09-23 11:56:25 +02:00
// [tablet -]: Layered navigation
@include break-to-device(tablet) {
2017-02-12 16:53:04 +01:00
background-color: $md-color-white;
2016-09-23 11:56:25 +02:00
// Stretch primary navigation to drawer
&--primary,
&--primary .md-nav {
display: flex;
position: absolute;
top: 0;
right: 0;
left: 0;
flex-direction: column;
height: 100%;
z-index: 1;
}
// Adjust styles for primary navigation
&--primary {
2017-01-26 21:25:31 +01:00
// List title and item
.md-nav__title,
.md-nav__item {
font-size: px2rem(16px);
2017-01-26 21:25:31 +01:00
line-height: 1.5;
}
// List title
.md-nav__title {
2016-09-23 11:56:25 +02:00
position: relative;
height: px2rem(112px);
padding: px2rem(60px) px2rem(16px) px2rem(4px);
2016-12-17 12:53:24 +01:00
background-color: $md-color-black--lightest;
2016-09-23 11:56:25 +02:00
color: $md-color-black--light;
font-weight: 400;
line-height: px2rem(48px);
2016-09-23 11:56:25 +02:00
white-space: nowrap;
cursor: pointer;
// Icon
.md-nav__icon {
2016-09-23 11:56:25 +02:00
display: block;
position: absolute;
top: px2rem(8px);
left: px2rem(8px);
width: px2rem(24px);
height: px2rem(24px);
margin: px2rem(4px);
// Adjust for right-to-left languages
[dir="rtl"] & {
right: px2rem(8px);
left: initial;
}
2016-09-23 11:56:25 +02:00
}
2016-12-29 12:10:51 +01:00
// Main lists
~ .md-nav__list {
background-color: $md-color-white;
box-shadow: inset 0 px2rem(1px) 0 $md-color-black--lightest;
overflow-y: auto;
scroll-snap-type: y mandatory;
2016-12-29 12:10:51 +01:00
// Remove border for first list item
& > .md-nav__item:first-child {
border-top: 0;
}
}
2016-12-28 16:20:52 +01:00
// Site title in main navigation
&[for="__drawer"] {
2016-12-28 16:20:52 +01:00
position: relative;
background-color: $md-color-primary;
color: $md-color-white;
// Site logo
2017-01-14 20:13:10 +01:00
.md-nav__button {
2016-12-28 16:20:52 +01:00
display: block;
position: absolute;
top: px2rem(4px);
left: px2rem(4px);
width: px2rem(64px);
height: px2rem(64px);
margin: px2rem(4px);
padding: px2rem(8px);
font-size: px2rem(48px);
2016-12-28 16:20:52 +01:00
}
}
2016-09-23 11:56:25 +02:00
}
// Adjust for right-to-left languages
html [dir="rtl"] & .md-nav__title {
// Site title in main navigation
&[for="__drawer"] .md-nav__button {
right: px2rem(4px);
left: initial;
}
}
2016-09-23 11:56:25 +02:00
// List of items
.md-nav__list {
flex: 1;
}
// List item
.md-nav__item {
padding: 0;
border-top: px2rem(1px) solid $md-color-black--lightest;
// Adjust for right-to-left languages
[dir="rtl"] & {
padding: 0;
}
// Increase spacing to account for icon
&--nested > .md-nav__link {
padding-right: px2rem(48px);
// Adjust for right-to-left languages
[dir="rtl"] & {
padding-right: px2rem(16px);
padding-left: px2rem(48px);
}
}
2016-09-23 11:56:25 +02:00
}
// Link inside item
.md-nav__link {
position: relative;
margin-top: 0;
padding: px2rem(12px) px2rem(16px);
2016-09-23 11:56:25 +02:00
// Icon
.md-nav__icon {
2016-09-23 11:56:25 +02:00
position: absolute;
top: 50%;
right: px2rem(12px);
margin-top: px2rem(-12px);
2016-12-17 12:53:24 +01:00
color: inherit;
font-size: px2rem(24px);
// Adjust for right-to-left languages
[dir="rtl"] & {
right: initial;
left: px2rem(12px);
}
}
}
// Icon
.md-nav__icon {
// Adjust for right-to-left languages
[dir="rtl"] & {
// Flip icon vertically
svg {
transform: scale(-1);
}
}
}
// Table of contents inside navigation
.md-nav--secondary {
// Set links to static to avoid unnecessary layering
.md-nav__link {
position: static;
}
// Set nested navigation for table of contents to static
.md-nav {
position: static;
background-color: transparent;
// 3rd level link
.md-nav__link {
padding-left: px2rem(28px);
// Adjust for right-to-left languages
[dir="rtl"] & {
padding-right: px2rem(28px);
padding-left: initial;
}
}
// 4th level link
.md-nav .md-nav__link {
padding-left: px2rem(40px);
// Adjust for right-to-left languages
[dir="rtl"] & {
padding-right: px2rem(40px);
padding-left: initial;
}
}
// 5th level link
.md-nav .md-nav .md-nav__link {
padding-left: px2rem(52px);
// Adjust for right-to-left languages
[dir="rtl"] & {
padding-right: px2rem(52px);
padding-left: initial;
}
}
// 6th level link
.md-nav .md-nav .md-nav .md-nav__link {
padding-left: px2rem(64px);
// Adjust for right-to-left languages
[dir="rtl"] & {
padding-right: px2rem(64px);
padding-left: initial;
}
}
2016-09-23 11:56:25 +02:00
}
}
}
// Hide nested navigation by default
.md-nav__toggle ~ & {
display: flex;
transform: translateX(100%);
transition:
transform 250ms cubic-bezier(0.8, 0, 0.6, 1),
opacity 125ms 50ms;
opacity: 0;
// Adjust for right-to-left languages
[dir="rtl"] & {
transform: translateX(-100%);
}
2016-09-23 11:56:25 +02:00
}
// Expand nested navigation, if toggle is checked
.md-nav__toggle:checked ~ & {
transform: translateX(0);
transition:
transform 250ms cubic-bezier(0.4, 0, 0.2, 1),
opacity 125ms 125ms;
opacity: 1;
2016-09-23 11:56:25 +02:00
}
}
// [tablet portrait -]: Show table of contents in drawer
@include break-to-device(tablet portrait) {
// Show link to table of contents - higher specificity is necessary to
// display the table of contents inside the drawer
html &__link[for="__toc"] {
2016-09-23 11:56:25 +02:00
display: block;
padding-right: px2rem(48px);
2016-09-23 11:56:25 +02:00
// Hide link to current item
+ .md-nav__link {
display: none;
}
// Show table of contents
& ~ .md-nav {
2016-09-23 11:56:25 +02:00
display: flex;
}
}
// Adjust for right-to-left languages
html [dir="rtl"] &__link {
padding-right: px2rem(16px);
padding-left: px2rem(48px);
}
// Repository containing source
&__source {
display: block;
padding: 0 px2rem(4px);
background-color: mix($md-color-primary, $md-color-black, 75%);
color: $md-color-white;
}
2016-09-23 11:56:25 +02:00
}
// [screen +]: Tree-like navigation
@include break-from-device(screen) {
// Animation is only possible if JavaScript is available, as the max-height
// property must be calculated before transitioning
transition: max-height 250ms cubic-bezier(0.86, 0, 0.07, 1);
// List title
.md-nav__title {
// Snap to site and table of contents title
&[for="__drawer"],
&[for="__toc"] {
scroll-snap-align: start;
}
// Hide icons
.md-nav__icon {
display: none;
}
}
2016-09-23 11:56:25 +02:00
// Hide nested navigation by default
.md-nav__toggle ~ & {
display: none;
2016-09-23 11:56:25 +02:00
}
// Show nested navigation, if toggle is checked
.md-nav__toggle:checked ~ & {
display: block;
2016-09-23 11:56:25 +02:00
}
// Hide titles for nested navigation
&__item--nested > .md-nav > &__title {
display: none;
2016-09-23 11:56:25 +02:00
}
// Icon
&__icon {
height: px2rem(18px);
float: right;
transition: transform 250ms;
2016-09-23 11:56:25 +02:00
// Inline icon and adjust to match font size
svg {
2016-09-23 11:56:25 +02:00
display: inline-block;
width: px2rem(18px);
height: px2rem(18px);
vertical-align: px2rem(-2px);
2016-09-23 11:56:25 +02:00
}
// Rotate icon for expanded lists
.md-nav__item--nested .md-nav__toggle:checked ~ .md-nav__link & {
transform: rotateZ(90deg);
2016-09-23 11:56:25 +02:00
}
}
}
}