mkdocs-material/src/assets/stylesheets/layout/_sidebar.scss

156 lines
4.1 KiB
SCSS
Raw Normal View History

////
2017-01-06 21:11:18 +03:00
/// Copyright (c) 2016-2017 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-09-04 18:32:12 +03:00
// ----------------------------------------------------------------------------
// Rules
2016-09-04 18:32:12 +03:00
// ----------------------------------------------------------------------------
// Sidebar container
2016-08-07 19:01:56 +03:00
.md-sidebar {
position: relative;
width: 24.2rem;
padding: 2.4rem 0;
2016-08-07 19:01:56 +03:00
float: left;
overflow: visible;
2016-10-24 19:02:53 +03:00
// Hide for print
@media print {
display: none;
}
2016-09-04 18:32:12 +03:00
// Lock sidebar to container height (account for fixed header)
2016-12-15 17:55:40 +03:00
&[data-md-state="lock"] {
2016-08-07 19:01:56 +03:00
position: fixed;
top: 5.6rem;
2017-01-13 15:02:28 +03:00
backface-visibility: hidden;
2016-08-07 19:01:56 +03:00
}
2016-09-23 12:56:25 +03:00
// [tablet -]: Convert navigation to drawer
@include break-to-device(tablet) {
2016-08-07 19:01:56 +03:00
2016-09-04 18:32:12 +03:00
// Render primary sidebar as a slideout container
2016-08-07 19:01:56 +03:00
&--primary {
position: fixed;
top: 0;
2016-09-23 12:56:25 +03:00
left: -24.2rem;
width: 24.2rem;
2016-08-07 19:01:56 +03:00
height: 100%;
transform: translateX(0);
transition:
2017-01-01 17:59:44 +03:00
transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
box-shadow 0.25s;
2016-12-17 14:53:24 +03:00
background-color: $md-color-white;
2016-09-23 12:56:25 +03:00
z-index: 2;
2016-08-07 19:01:56 +03:00
2016-09-04 18:32:12 +03:00
// Just hide drawer, if browser doesn't support 3D transforms
2016-08-07 19:01:56 +03:00
.no-csstransforms3d & {
display: none;
}
2016-09-04 18:32:12 +03:00
// Expanded drawer
2016-12-15 17:55:40 +03:00
[data-md-toggle="drawer"]:checked ~ .md-container & {
@include z-depth(8);
transform: translateX(24.2rem);
2016-08-07 19:01:56 +03:00
2016-09-04 18:32:12 +03:00
// Just show drawer, if browser doesn't support 3D transforms
2016-08-07 19:01:56 +03:00
.no-csstransforms3d & {
display: block;
}
}
2016-09-23 12:56:25 +03:00
// Hide overflow for nested navigation
.md-sidebar__scrollwrap {
overflow: hidden;
}
2016-08-07 19:01:56 +03:00
}
}
2016-09-04 18:32:12 +03:00
// Secondary sidebar with table of contents
2016-08-07 19:01:56 +03:00
&--secondary {
display: none;
2016-09-04 18:32:12 +03:00
// [tablet landscape +]: Show table of contents next to body copy
2016-08-07 19:01:56 +03:00
@include break-from-device(tablet landscape) {
display: block;
float: right;
2016-09-08 20:43:23 +03:00
// Hack: align right in case of locked sidebar
2016-12-15 17:55:40 +03:00
&[data-md-state="lock"] {
2016-08-07 19:01:56 +03:00
margin-left: 100%;
transform: translate(-100%, 0);
2016-09-23 12:56:25 +03:00
// [screen +]: Limit to grid
@include break-from-device(screen) {
margin-left: 122rem;
2016-08-07 19:01:56 +03:00
}
}
}
}
2016-09-04 18:32:12 +03:00
// Wrapper for scrolling on overflow
2016-08-07 19:01:56 +03:00
&__scrollwrap {
max-height: 100%;
margin: 0 0.4rem;
2017-01-14 21:48:00 +03:00
overflow-y: auto;
2016-08-07 19:01:56 +03:00
2016-09-23 12:56:25 +03:00
// [tablet -]: Adjust margins
@include break-to-device(tablet) {
2016-08-07 19:01:56 +03:00
// Stretch scrollwrap for primary sidebar
2016-08-07 19:01:56 +03:00
.md-sidebar--primary & {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
2016-08-07 19:01:56 +03:00
margin: 0;
}
}
2016-09-04 18:32:12 +03:00
// Override native scrollbar styles
2016-08-07 19:01:56 +03:00
&::-webkit-scrollbar {
width: 0.4rem;
height: 0.4rem;
}
2016-08-07 19:01:56 +03:00
// Style scrollbar thumb
&::-webkit-scrollbar-thumb {
background-color: $md-color-black--lighter;
// Hovered scrollbar thumb
&:hover {
background-color: $md-color-accent;
2016-08-07 19:01:56 +03:00
}
}
}
// Sidebar content
2016-08-07 19:01:56 +03:00
&__inner {
2016-09-23 12:56:25 +03:00
// [screen +]: Add line for reference
@include break-from-device(screen) {
border-right: 0.1rem solid $md-color-black--lightest;
2016-08-07 19:01:56 +03:00
}
}
}