123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- // Bootstrap functions
- //
- // Utility mixins and functions for evaluating source code across our variables, maps, and mixins.
- // Ascending
- // Used to evaluate Sass maps like our grid breakpoints.
- @mixin _assert-ascending($map, $map-name) {
- $prev-key: null;
- $prev-num: null;
- @each $key, $num in $map {
- @if $prev-num == null or unit($num) == "%" or unit($prev-num) == "%" {
- // Do nothing
- } @else if not comparable($prev-num, $num) {
- @warn "Potentially invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} whose unit makes it incomparable to #{$prev-num}, the value of the previous key '#{$prev-key}' !";
- } @else if $prev-num >= $num {
- @warn "Invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} which isn't greater than #{$prev-num}, the value of the previous key '#{$prev-key}' !";
- }
- $prev-key: $key;
- $prev-num: $num;
- }
- }
- // Starts at zero
- // Used to ensure the min-width of the lowest breakpoint starts at 0.
- @mixin _assert-starts-at-zero($map, $map-name: "$grid-breakpoints") {
- @if length($map) > 0 {
- $values: map-values($map);
- $first-value: nth($values, 1);
- @if $first-value != 0 {
- @warn "First breakpoint in #{$map-name} must start at 0, but starts at #{$first-value}.";
- }
- }
- }
- // Replace `$search` with `$replace` in `$string`
- // Used on our SVG icon backgrounds for custom forms.
- //
- // @author Hugo Giraudel
- // @param {String} $string - Initial string
- // @param {String} $search - Substring to replace
- // @param {String} $replace ('') - New value
- // @return {String} - Updated string
- @function str-replace($string, $search, $replace: "") {
- $index: str-index($string, $search);
- @if $index {
- @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
- }
- @return $string;
- }
- // See https://codepen.io/kevinweber/pen/dXWoRw
- //
- // Requires the use of quotes around data URIs.
- @function escape-svg($string) {
- @if str-index($string, "data:image/svg+xml") {
- @each $char, $encoded in $escaped-characters {
- // Do not escape the url brackets
- @if str-index($string, "url(") == 1 {
- $string: url("#{str-replace(str-slice($string, 6, -3), $char, $encoded)}");
- } @else {
- $string: str-replace($string, $char, $encoded);
- }
- }
- }
- @return $string;
- }
- // Color contrast
- @function color-yiq($color, $dark: $yiq-text-dark, $light: $yiq-text-light) {
- $r: red($color);
- $g: green($color);
- $b: blue($color);
- $yiq: (($r * 299) + ($g * 587) + ($b * 114)) * .001;
- @if ($yiq >= $yiq-contrasted-threshold) {
- @return $dark;
- } @else {
- @return $light;
- }
- }
- // Retrieve color Sass maps
- @function color($key: "blue") {
- @return map-get($colors, $key);
- }
- @function theme-color($key: "primary") {
- @return map-get($theme-colors, $key);
- }
- @function gray($key: "100") {
- @return map-get($grays, $key);
- }
- // Request a theme color level
- @function theme-color-level($color-name: "primary", $level: 0) {
- $color: theme-color($color-name);
- $color-base: if($level > 0, $black, $white);
- $level: abs($level);
- @return mix($color-base, $color, $level * $theme-color-interval);
- }
- // Return valid calc
- @function add($value1, $value2, $return-calc: true) {
- @if $value1 == null {
- @return $value2;
- }
- @if $value2 == null {
- @return $value1;
- }
- @if type-of($value1) == number and type-of($value2) == number and comparable($value1, $value2) {
- @return $value1 + $value2;
- }
- @return if($return-calc == true, calc(#{$value1} + #{$value2}), $value1 + unquote(" + ") + $value2);
- }
- @function subtract($value1, $value2, $return-calc: true) {
- @if $value1 == null and $value2 == null {
- @return null;
- }
- @if $value1 == null {
- @return -$value2;
- }
- @if $value2 == null {
- @return $value1;
- }
- @if type-of($value1) == number and type-of($value2) == number and comparable($value1, $value2) {
- @return $value1 - $value2;
- }
- @if type-of($value2) != number {
- $value2: unquote("(") + $value2 + unquote(")");
- }
- @return if($return-calc == true, calc(#{$value1} - #{$value2}), $value1 + unquote(" - ") + $value2);
- }
- @function divide($dividend, $divisor, $precision: 10) {
- $sign: if($dividend > 0 and $divisor > 0 or $dividend < 0 and $divisor < 0, 1, -1);
- $dividend: abs($dividend);
- $divisor: abs($divisor);
- @if $dividend == 0 {
- @return 0;
- }
- @if $divisor == 0 {
- @error "Cannot divide by 0";
- }
- $remainder: $dividend;
- $result: 0;
- $factor: 10;
- @while ($remainder > 0 and $precision >= 0) {
- $quotient: 0;
- @while ($remainder >= $divisor) {
- $remainder: $remainder - $divisor;
- $quotient: $quotient + 1;
- }
- $result: $result * 10 + $quotient;
- $factor: $factor * .1;
- $remainder: $remainder * 10;
- $precision: $precision - 1;
- @if ($precision < 0 and $remainder >= $divisor * 5) {
- $result: $result + 1;
- }
- }
- $result: $result * $factor * $sign;
- $dividend-unit: unit($dividend);
- $divisor-unit: unit($divisor);
- $unit-map: (
- "px": 1px,
- "rem": 1rem,
- "em": 1em,
- "%": 1%
- );
- @if ($dividend-unit != $divisor-unit and map-has-key($unit-map, $dividend-unit)) {
- $result: $result * map-get($unit-map, $dividend-unit);
- }
- @return $result;
- }
|