1
1
mirror of https://github.com/docker-mailserver/docker-mailserver synced 2024-09-29 11:41:18 +02:00

docs(deps): bump mkdocs-material to 7.3.2 (#2244)

* docs(deps): bump mkdocs-material to 7.3.3

Co-authored-by: Brennan Kinney <5098581+polarathene@users.noreply.github.com>
This commit is contained in:
Frederic Werner 2021-10-17 12:50:02 +02:00 committed by GitHub
parent 0cebfde414
commit ec6cc3c032
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 2 deletions

@ -6,7 +6,7 @@ docker run \
--rm \ --rm \
--user "$(id -u):$(id -g)" \ --user "$(id -u):$(id -g)" \
-v "${PWD}:/docs" \ -v "${PWD}:/docs" \
squidfunk/mkdocs-material:7.3.0 build --strict squidfunk/mkdocs-material:7.3.3 build --strict
# Remove unnecessary build artifacts: https://github.com/squidfunk/mkdocs-material/issues/2519 # Remove unnecessary build artifacts: https://github.com/squidfunk/mkdocs-material/issues/2519
cd site || exit cd site || exit

@ -1,4 +1,7 @@
/* This file adds our styling additions / fixes to maintain. */ /*
This file adds our styling additions / fixes to maintain.
Some of which are overly specific and may break with future updates by upstream.
*/
/* ============================================================================================================= */ /* ============================================================================================================= */
@ -40,6 +43,19 @@ If you want to append instead, switch `::before` to `::after`.
/* ============================================================================================================= */ /* ============================================================================================================= */
/*
UX Bugfix for left navbar visibility on top-level (tabbed) pages with no nested sub-pages.
Upstream will not fix: https://github.com/squidfunk/mkdocs-material/issues/3109
*/
@media screen and (min-width: 76.25em) {
.md-nav--lifted>.md-nav__list>.md-nav__item--active>.md-nav__link {
display: none;
}
}
/* ============================================================================================================= */
/* /*
UX Bugfix for permalink affecting typography in headings. UX Bugfix for permalink affecting typography in headings.
Upstream will not fix: https://github.com/squidfunk/mkdocs-material/issues/2369 Upstream will not fix: https://github.com/squidfunk/mkdocs-material/issues/2369