_functions.scss 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. // Bootstrap functions
  2. //
  3. // Utility mixins and functions for evaluating source code across our variables, maps, and mixins.
  4. // Ascending
  5. // Used to evaluate Sass maps like our grid breakpoints.
  6. @mixin _assert-ascending($map, $map-name) {
  7. $prev-key: null;
  8. $prev-num: null;
  9. @each $key, $num in $map {
  10. @if $prev-num == null or unit($num) == "%" or unit($prev-num) == "%" {
  11. // Do nothing
  12. } @else if not comparable($prev-num, $num) {
  13. @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}' !";
  14. } @else if $prev-num >= $num {
  15. @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}' !";
  16. }
  17. $prev-key: $key;
  18. $prev-num: $num;
  19. }
  20. }
  21. // Starts at zero
  22. // Used to ensure the min-width of the lowest breakpoint starts at 0.
  23. @mixin _assert-starts-at-zero($map, $map-name: "$grid-breakpoints") {
  24. @if length($map) > 0 {
  25. $values: map-values($map);
  26. $first-value: nth($values, 1);
  27. @if $first-value != 0 {
  28. @warn "First breakpoint in #{$map-name} must start at 0, but starts at #{$first-value}.";
  29. }
  30. }
  31. }
  32. // Replace `$search` with `$replace` in `$string`
  33. // Used on our SVG icon backgrounds for custom forms.
  34. //
  35. // @author Hugo Giraudel
  36. // @param {String} $string - Initial string
  37. // @param {String} $search - Substring to replace
  38. // @param {String} $replace ('') - New value
  39. // @return {String} - Updated string
  40. @function str-replace($string, $search, $replace: "") {
  41. $index: str-index($string, $search);
  42. @if $index {
  43. @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
  44. }
  45. @return $string;
  46. }
  47. // See https://codepen.io/kevinweber/pen/dXWoRw
  48. //
  49. // Requires the use of quotes around data URIs.
  50. @function escape-svg($string) {
  51. @if str-index($string, "data:image/svg+xml") {
  52. @each $char, $encoded in $escaped-characters {
  53. // Do not escape the url brackets
  54. @if str-index($string, "url(") == 1 {
  55. $string: url("#{str-replace(str-slice($string, 6, -3), $char, $encoded)}");
  56. } @else {
  57. $string: str-replace($string, $char, $encoded);
  58. }
  59. }
  60. }
  61. @return $string;
  62. }
  63. // Color contrast
  64. @function color-yiq($color, $dark: $yiq-text-dark, $light: $yiq-text-light) {
  65. $r: red($color);
  66. $g: green($color);
  67. $b: blue($color);
  68. $yiq: (($r * 299) + ($g * 587) + ($b * 114)) * .001;
  69. @if ($yiq >= $yiq-contrasted-threshold) {
  70. @return $dark;
  71. } @else {
  72. @return $light;
  73. }
  74. }
  75. // Retrieve color Sass maps
  76. @function color($key: "blue") {
  77. @return map-get($colors, $key);
  78. }
  79. @function theme-color($key: "primary") {
  80. @return map-get($theme-colors, $key);
  81. }
  82. @function gray($key: "100") {
  83. @return map-get($grays, $key);
  84. }
  85. // Request a theme color level
  86. @function theme-color-level($color-name: "primary", $level: 0) {
  87. $color: theme-color($color-name);
  88. $color-base: if($level > 0, $black, $white);
  89. $level: abs($level);
  90. @return mix($color-base, $color, $level * $theme-color-interval);
  91. }
  92. // Return valid calc
  93. @function add($value1, $value2, $return-calc: true) {
  94. @if $value1 == null {
  95. @return $value2;
  96. }
  97. @if $value2 == null {
  98. @return $value1;
  99. }
  100. @if type-of($value1) == number and type-of($value2) == number and comparable($value1, $value2) {
  101. @return $value1 + $value2;
  102. }
  103. @return if($return-calc == true, calc(#{$value1} + #{$value2}), $value1 + unquote(" + ") + $value2);
  104. }
  105. @function subtract($value1, $value2, $return-calc: true) {
  106. @if $value1 == null and $value2 == null {
  107. @return null;
  108. }
  109. @if $value1 == null {
  110. @return -$value2;
  111. }
  112. @if $value2 == null {
  113. @return $value1;
  114. }
  115. @if type-of($value1) == number and type-of($value2) == number and comparable($value1, $value2) {
  116. @return $value1 - $value2;
  117. }
  118. @if type-of($value2) != number {
  119. $value2: unquote("(") + $value2 + unquote(")");
  120. }
  121. @return if($return-calc == true, calc(#{$value1} - #{$value2}), $value1 + unquote(" - ") + $value2);
  122. }
  123. @function divide($dividend, $divisor, $precision: 10) {
  124. $sign: if($dividend > 0 and $divisor > 0 or $dividend < 0 and $divisor < 0, 1, -1);
  125. $dividend: abs($dividend);
  126. $divisor: abs($divisor);
  127. @if $dividend == 0 {
  128. @return 0;
  129. }
  130. @if $divisor == 0 {
  131. @error "Cannot divide by 0";
  132. }
  133. $remainder: $dividend;
  134. $result: 0;
  135. $factor: 10;
  136. @while ($remainder > 0 and $precision >= 0) {
  137. $quotient: 0;
  138. @while ($remainder >= $divisor) {
  139. $remainder: $remainder - $divisor;
  140. $quotient: $quotient + 1;
  141. }
  142. $result: $result * 10 + $quotient;
  143. $factor: $factor * .1;
  144. $remainder: $remainder * 10;
  145. $precision: $precision - 1;
  146. @if ($precision < 0 and $remainder >= $divisor * 5) {
  147. $result: $result + 1;
  148. }
  149. }
  150. $result: $result * $factor * $sign;
  151. $dividend-unit: unit($dividend);
  152. $divisor-unit: unit($divisor);
  153. $unit-map: (
  154. "px": 1px,
  155. "rem": 1rem,
  156. "em": 1em,
  157. "%": 1%
  158. );
  159. @if ($dividend-unit != $divisor-unit and map-has-key($unit-map, $dividend-unit)) {
  160. $result: $result * map-get($unit-map, $dividend-unit);
  161. }
  162. @return $result;
  163. }