2016-09-04 18:11:58 +03:00
|
|
|
////
|
|
|
|
/// Copyright (c) 2016 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:11:58 +03:00
|
|
|
/// ---------------------------------------------------------------------------
|
|
|
|
/// Variables
|
|
|
|
/// ---------------------------------------------------------------------------
|
2016-01-29 01:27:15 +03:00
|
|
|
|
2016-09-04 18:11:58 +03:00
|
|
|
////
|
|
|
|
/// Device-specific breakpoints
|
|
|
|
///
|
|
|
|
/// @example
|
|
|
|
/// $break-devices: (
|
|
|
|
/// mobile: (
|
|
|
|
/// portrait: px2em(220px) px2em(479px),
|
|
|
|
/// landscape: px2em(480px) px2em(719px)
|
|
|
|
/// ),
|
|
|
|
/// tablet: (
|
|
|
|
/// portrait: px2em(720px) px2em(959px),
|
|
|
|
/// landscape: px2em(960px) px2em(1199px)
|
|
|
|
/// ),
|
|
|
|
/// screen: (
|
|
|
|
/// small: px2em(1200px) px2em(1599px),
|
|
|
|
/// medium: px2em(1600px) px2em(1999px),
|
|
|
|
/// large: px2em(2000px)
|
|
|
|
/// )
|
|
|
|
/// );
|
|
|
|
///
|
|
|
|
/// @group helpers
|
|
|
|
/// @access private
|
|
|
|
/// @type Map
|
|
|
|
////
|
2016-08-07 19:01:56 +03:00
|
|
|
$break-devices: () !default;
|
2016-01-29 01:27:15 +03:00
|
|
|
|
2016-09-04 18:11:58 +03:00
|
|
|
/// ---------------------------------------------------------------------------
|
|
|
|
/// Breakpoint helpers
|
|
|
|
/// ---------------------------------------------------------------------------
|
2016-01-29 01:27:15 +03:00
|
|
|
|
2016-09-04 18:11:58 +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-01-29 01:27:15 +03:00
|
|
|
@function break-select-min-max($devices) {
|
2016-09-04 18:11:58 +03:00
|
|
|
$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
|
|
|
}
|
|
|
|
}
|
|
|
|
} @elseif type-of($value) == number {
|
|
|
|
$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:11:58 +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-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
|
|
|
}
|
|
|
|
}
|
2016-08-07 19:01:56 +03:00
|
|
|
@if type-of($current) == list or
|
|
|
|
type-of($current) == number {
|
|
|
|
$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:11:58 +03:00
|
|
|
/// ---------------------------------------------------------------------------
|
|
|
|
/// Breakpoint mixins
|
|
|
|
/// ---------------------------------------------------------------------------
|
2016-01-29 01:27:15 +03:00
|
|
|
|
2016-09-04 18:11:58 +03:00
|
|
|
////
|
|
|
|
/// A minimum-maximum media query breakpoint
|
|
|
|
///
|
|
|
|
/// @group helpers
|
|
|
|
/// @access public
|
|
|
|
/// @param {Number|List} $breakpoint Number or number pair
|
|
|
|
////
|
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;
|
|
|
|
}
|
|
|
|
} @elseif type-of($breakpoint) == list {
|
2016-09-04 18:11:58 +03:00
|
|
|
$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:11:58 +03:00
|
|
|
////
|
|
|
|
/// An orientation media query breakpoint
|
|
|
|
///
|
|
|
|
/// @group helpers
|
|
|
|
/// @access public
|
|
|
|
/// @param {String} $breakpoint Orientation
|
|
|
|
////
|
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 {
|
2016-08-07 19:01:56 +03:00
|
|
|
@error "Invalid breakpoint: #{$breakpoint}";
|
2016-01-29 01:27:15 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-04 18:11:58 +03:00
|
|
|
////
|
|
|
|
/// A maximum-aspect-ratio media query breakpoint
|
|
|
|
///
|
|
|
|
/// @group helpers
|
|
|
|
/// @access public
|
|
|
|
/// @param {Number} $breakpoint Ratio
|
|
|
|
////
|
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 {
|
2016-08-07 19:01:56 +03:00
|
|
|
@error "Invalid breakpoint: #{$breakpoint}";
|
2016-01-29 01:27:15 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-04 18:11:58 +03:00
|
|
|
////
|
|
|
|
/// A minimum-maximum media query device breakpoint
|
|
|
|
///
|
|
|
|
/// @group helpers
|
|
|
|
/// @access public
|
|
|
|
/// @param {String|List} $breakpoint Device
|
|
|
|
////
|
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 {
|
2016-09-04 18:11:58 +03:00
|
|
|
$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:11:58 +03:00
|
|
|
////
|
|
|
|
/// A minimum media query device breakpoint
|
|
|
|
///
|
|
|
|
/// @group helpers
|
|
|
|
/// @access public
|
|
|
|
/// @param {String|List} $breakpoint Device
|
|
|
|
////
|
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:11:58 +03:00
|
|
|
////
|
|
|
|
/// A maximum media query device breakpoint
|
|
|
|
///
|
|
|
|
/// @group helpers
|
|
|
|
/// @access public
|
|
|
|
/// @param {String|List} $breakpoint Device
|
|
|
|
////
|
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
|
|
|
}
|
2016-09-04 18:11:58 +03:00
|
|
|
}
|