mkdocs-material/src/assets/stylesheets/utilities/_break.scss

251 lines
6.6 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-29 01:27:15 +03:00
2016-09-04 18:32:12 +03:00
// ----------------------------------------------------------------------------
// Variables
// ----------------------------------------------------------------------------
2016-01-29 01:27:15 +03:00
2016-09-04 18:32:12 +03:00
///
/// Device-specific breakpoints
///
/// @example
/// $break-devices: (
/// mobile: (
2016-09-13 21:58:28 +03:00
/// portrait: 220px 479px,
/// landscape: 480px 719px
/// ),
/// tablet: (
2016-09-13 21:58:28 +03:00
/// portrait: 720px 959px,
/// landscape: 960px 1219px
/// ),
/// screen: (
/// small: 1220px 1599px,
2016-09-13 21:58:28 +03:00
/// medium: 1600px 1999px,
/// large: 2000px
/// )
/// );
///
/// @group helpers
/// @access private
/// @type Map
2016-09-04 18:32:12 +03:00
///
2016-08-07 19:01:56 +03:00
$break-devices: () !default;
2016-01-29 01:27:15 +03:00
2016-09-04 18:32:12 +03:00
// ----------------------------------------------------------------------------
// Helpers
2016-09-04 18:32:12 +03:00
// ----------------------------------------------------------------------------
2016-01-29 01:27:15 +03:00
2016-09-04 18:32:12 +03:00
///
/// Choose minimum and maximum device widths
///
/// @group helpers
/// @access private
/// @param {Map} $devices Map of devices
/// @return {List} Minimum and maximum width
2016-09-04 18:32:12 +03:00
///
2016-01-29 01:27:15 +03:00
@function break-select-min-max($devices) {
$min: 1000000;
$max: 0;
2016-01-29 01:27:15 +03:00
@each $key, $value in $devices {
@while type-of($value) == map {
$value: break-select-min-max($value);
}
@if type-of($value) == list {
@each $number in $value {
@if type-of($number) == number {
$min: min($number, $min);
@if $max != null {
$max: max($number, $max);
}
} @else {
2016-08-07 19:01:56 +03:00
@error "Invalid number: #{$number}";
2016-01-29 01:27:15 +03:00
}
}
2020-02-10 20:32:28 +03:00
} @else if type-of($value) == number {
2016-01-29 01:27:15 +03:00
$min: min($value, $min);
$max: null;
} @else {
2016-08-07 19:01:56 +03:00
@error "Invalid value: #{$value}";
2016-01-29 01:27:15 +03:00
}
}
@return $min, $max;
}
2016-09-04 18:32:12 +03:00
///
/// Select minimum and maximum widths for a device breakpoint
///
/// @group helpers
/// @access private
/// @param {String} $device Device
/// @return {List} Minimum and maximum width
2016-09-04 18:32:12 +03:00
///
2016-01-29 01:27:15 +03:00
@function break-select-device($device) {
2016-08-07 19:01:56 +03:00
$current: $break-devices;
2016-01-29 01:27:15 +03:00
@for $n from 1 through length($device) {
2016-08-07 19:01:56 +03:00
@if type-of($current) == map {
$current: map-get($current, nth($device, $n));
2016-01-29 01:27:15 +03:00
} @else {
2016-08-07 19:01:56 +03:00
@error "Invalid device map: #{$devices}";
2016-01-29 01:27:15 +03:00
}
}
2017-01-01 17:59:44 +03:00
@if type-of($current) == list or type-of($current) == number {
2016-08-07 19:01:56 +03:00
$current: (default: $current);
2016-01-29 01:27:15 +03:00
}
2016-08-07 19:01:56 +03:00
@return break-select-min-max($current);
2016-01-29 01:27:15 +03:00
}
2016-09-04 18:32:12 +03:00
// ----------------------------------------------------------------------------
// Mixins
2016-09-04 18:32:12 +03:00
// ----------------------------------------------------------------------------
2016-01-29 01:27:15 +03:00
2016-09-04 18:32:12 +03:00
///
/// A minimum-maximum media query breakpoint
///
/// @group helpers
/// @access public
2016-10-07 17:38:13 +03:00
/// @param {Number|List} $breakpoint Number or number pair
2016-09-04 18:32:12 +03:00
///
2016-01-29 01:27:15 +03:00
@mixin break-at($breakpoint) {
@if type-of($breakpoint) == number {
@media only screen and (min-width: $breakpoint) {
@content;
}
2020-02-10 20:32:28 +03:00
} @else if type-of($breakpoint) == list {
$min: nth($breakpoint, 1);
$max: nth($breakpoint, 2);
2016-01-29 01:27:15 +03:00
@if type-of($min) == number and type-of($max) == number {
@media only screen and (min-width: $min) and (max-width: $max) {
@content;
}
} @else {
2016-08-07 19:01:56 +03:00
@error "Invalid breakpoint: #{$breakpoint}";
2016-01-29 01:27:15 +03:00
}
} @else {
2016-08-07 19:01:56 +03:00
@error "Invalid breakpoint: #{$breakpoint}";
2016-01-29 01:27:15 +03:00
}
}
2016-09-04 18:32:12 +03:00
///
/// An orientation media query breakpoint
///
/// @group helpers
/// @access public
2016-10-07 17:38:13 +03:00
/// @param {String} $breakpoint Orientation
2016-09-04 18:32:12 +03:00
///
2016-01-29 01:27:15 +03:00
@mixin break-at-orientation($breakpoint) {
@if type-of($breakpoint) == string {
@media only screen and (orientation: $breakpoint) {
@content;
}
} @else {
2017-01-01 17:59:44 +03:00
@error "Invalid breakpoint: #{$breakpoint}";
2016-01-29 01:27:15 +03:00
}
}
2016-09-04 18:32:12 +03:00
///
/// A maximum-aspect-ratio media query breakpoint
///
/// @group helpers
/// @access public
2016-10-07 17:38:13 +03:00
/// @param {Number} $breakpoint Ratio
2016-09-04 18:32:12 +03:00
///
2016-01-29 01:27:15 +03:00
@mixin break-at-ratio($breakpoint) {
@if type-of($breakpoint) == number {
@media only screen and (max-aspect-ratio: $breakpoint) {
@content;
}
} @else {
2017-01-01 17:59:44 +03:00
@error "Invalid breakpoint: #{$breakpoint}";
2016-01-29 01:27:15 +03:00
}
}
2016-09-04 18:32:12 +03:00
///
/// A minimum-maximum media query device breakpoint
///
/// @group helpers
/// @access public
2016-10-07 17:38:13 +03:00
/// @param {String|List} $breakpoint Device
2016-09-04 18:32:12 +03:00
///
2016-01-29 01:27:15 +03:00
@mixin break-at-device($device) {
@if type-of($device) == string {
$device: $device,;
}
@if type-of($device) == list {
$breakpoint: break-select-device($device);
@if nth($breakpoint, 2) != null {
$min: nth($breakpoint, 1);
$max: nth($breakpoint, 2);
2016-01-29 01:27:15 +03:00
@media only screen and (min-width: $min) and (max-width: $max) {
@content;
}
} @else {
2016-08-07 19:01:56 +03:00
@error "Invalid device: #{$device}";
2016-01-29 01:27:15 +03:00
}
} @else {
2016-08-07 19:01:56 +03:00
@error "Invalid device: #{$device}";
2016-01-29 01:27:15 +03:00
}
}
2016-09-04 18:32:12 +03:00
///
/// A minimum media query device breakpoint
///
/// @group helpers
/// @access public
2016-10-07 17:38:13 +03:00
/// @param {String|List} $breakpoint Device
2016-09-04 18:32:12 +03:00
///
2016-01-29 01:27:15 +03:00
@mixin break-from-device($device) {
@if type-of($device) == string {
$device: $device,;
}
@if type-of($device) == list {
$breakpoint: break-select-device($device);
$min: nth($breakpoint, 1);
@media only screen and (min-width: $min) {
@content;
}
} @else {
2016-08-07 19:01:56 +03:00
@error "Invalid device: #{$device}";
2016-01-29 01:27:15 +03:00
}
}
2016-09-04 18:32:12 +03:00
///
/// A maximum media query device breakpoint
///
/// @group helpers
/// @access public
2016-10-07 17:38:13 +03:00
/// @param {String|List} $breakpoint Device
2016-09-04 18:32:12 +03:00
///
2016-01-29 01:27:15 +03:00
@mixin break-to-device($device) {
@if type-of($device) == string {
$device: $device,;
}
@if type-of($device) == list {
$breakpoint: break-select-device($device);
2016-08-07 19:01:56 +03:00
$max: nth($breakpoint, 2);
2016-01-29 01:27:15 +03:00
@media only screen and (max-width: $max) {
@content;
}
} @else {
2016-08-07 19:01:56 +03:00
@error "Invalid device: #{$device}";
2016-01-29 01:27:15 +03:00
}
}