_functions.scss 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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. $values: map-values($map);
  25. $first-value: nth($values, 1);
  26. @if $first-value != 0 {
  27. @warn "First breakpoint in #{$map-name} must start at 0, but starts at #{$first-value}.";
  28. }
  29. }
  30. // Replace `$search` with `$replace` in `$string`
  31. // Used on our SVG icon backgrounds for custom forms.
  32. //
  33. // @author Hugo Giraudel
  34. // @param {String} $string - Initial string
  35. // @param {String} $search - Substring to replace
  36. // @param {String} $replace ('') - New value
  37. // @return {String} - Updated string
  38. @function str-replace($string, $search, $replace: "") {
  39. $index: str-index($string, $search);
  40. @if $index {
  41. @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
  42. }
  43. @return $string;
  44. }
  45. // See https://codepen.io/kevinweber/pen/dXWoRw
  46. @function escape-svg($string) {
  47. @if str-index($string, "data:image/svg+xml") {
  48. @each $char, $encoded in $escaped-characters {
  49. $string: str-replace($string, $char, $encoded);
  50. }
  51. }
  52. @return $string;
  53. }
  54. // Color contrast
  55. @function color-yiq($color, $dark: $yiq-text-dark, $light: $yiq-text-light) {
  56. $r: red($color);
  57. $g: green($color);
  58. $b: blue($color);
  59. $yiq: (($r * 299) + ($g * 587) + ($b * 114)) / 1000;
  60. @if ($yiq >= $yiq-contrasted-threshold) {
  61. @return $dark;
  62. } @else {
  63. @return $light;
  64. }
  65. }
  66. // Retrieve color Sass maps
  67. @function color($key: "blue") {
  68. @return map-get($colors, $key);
  69. }
  70. @function theme-color($key: "primary") {
  71. @return map-get($theme-colors, $key);
  72. }
  73. @function gray($key: "100") {
  74. @return map-get($grays, $key);
  75. }
  76. // Request a theme color level
  77. @function theme-color-level($color-name: "primary", $level: 0) {
  78. $color: theme-color($color-name);
  79. $color-base: if($level > 0, $black, $white);
  80. $level: abs($level);
  81. @return mix($color-base, $color, $level * $theme-color-interval);
  82. }
  83. // Return valid calc
  84. @function add($value1, $value2, $return-calc: true) {
  85. @if $value1 == null {
  86. @return $value2;
  87. }
  88. @if $value2 == null {
  89. @return $value1;
  90. }
  91. @if type-of($value1) == number and type-of($value2) == number and comparable($value1, $value2) {
  92. @return $value1 + $value2;
  93. }
  94. @return if($return-calc == true, calc(#{$value1} + #{$value2}), $value1 + unquote(" + ") + $value2);
  95. }
  96. @function subtract($value1, $value2, $return-calc: true) {
  97. @if $value1 == null and $value2 == null {
  98. @return null;
  99. }
  100. @if $value1 == null {
  101. @return -$value2;
  102. }
  103. @if $value2 == null {
  104. @return $value1;
  105. }
  106. @if type-of($value1) == number and type-of($value2) == number and comparable($value1, $value2) {
  107. @return $value1 - $value2;
  108. }
  109. @return if($return-calc == true, calc(#{$value1} - #{$value2}), $value1 + unquote(" - ") + $value2);
  110. }