_functions.scss 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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 +
  42. str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
  43. }
  44. @return $string;
  45. }
  46. // See https://codepen.io/kevinweber/pen/dXWoRw
  47. @function escape-svg($string) {
  48. @if str-index($string, 'data:image/svg+xml') {
  49. @each $char, $encoded in $escaped-characters {
  50. $string: str-replace($string, $char, $encoded);
  51. }
  52. }
  53. @return $string;
  54. }
  55. // Color contrast
  56. @function color-yiq($color, $dark: $yiq-text-dark, $light: $yiq-text-light) {
  57. $r: red($color);
  58. $g: green($color);
  59. $b: blue($color);
  60. $yiq: (($r * 299) + ($g * 587) + ($b * 114)) / 1000;
  61. @if ($yiq >= $yiq-contrasted-threshold) {
  62. @return $dark;
  63. } @else {
  64. @return $light;
  65. }
  66. }
  67. // Retrieve color Sass maps
  68. @function color($key: 'blue') {
  69. @return map-get($colors, $key);
  70. }
  71. @function theme-color($key: 'primary') {
  72. @return map-get($theme-colors, $key);
  73. }
  74. @function gray($key: '100') {
  75. @return map-get($grays, $key);
  76. }
  77. // Request a theme color level
  78. @function theme-color-level($color-name: 'primary', $level: 0) {
  79. $color: theme-color($color-name);
  80. $color-base: if($level > 0, $black, $white);
  81. $level: abs($level);
  82. @return mix($color-base, $color, $level * $theme-color-interval);
  83. }
  84. // Return valid calc
  85. @function add($value1, $value2, $return-calc: true) {
  86. @if $value1 == null {
  87. @return $value2;
  88. }
  89. @if $value2 == null {
  90. @return $value1;
  91. }
  92. @if type-of($value1) == number and type-of($value2) == number and comparable($value1, $value2) {
  93. @return $value1 + $value2;
  94. }
  95. @return if($return-calc == true, calc(#{$value1} + #{$value2}), $value1 + unquote(' + ') + $value2);
  96. }
  97. @function subtract($value1, $value2, $return-calc: true) {
  98. @if $value1 == null and $value2 == null {
  99. @return null;
  100. }
  101. @if $value1 == null {
  102. @return -$value2;
  103. }
  104. @if $value2 == null {
  105. @return $value1;
  106. }
  107. @if type-of($value1) == number and type-of($value2) == number and comparable($value1, $value2) {
  108. @return $value1 - $value2;
  109. }
  110. @return if($return-calc == true, calc(#{$value1} - #{$value2}), $value1 + unquote(' - ') + $value2);
  111. }