_bootstrap-function.scss 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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. }
  13. @else if not comparable($prev-num, $num) {
  14. @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}' !";
  15. }
  16. @else if $prev-num >= $num {
  17. @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}' !";
  18. }
  19. $prev-key: $key;
  20. $prev-num: $num;
  21. }
  22. }
  23. // Starts at zero
  24. // Used to ensure the min-width of the lowest breakpoint starts at 0.
  25. @mixin _assert-starts-at-zero($map, $map-name: "$grid-breakpoints") {
  26. $values: map-values($map);
  27. $first-value: nth($values, 1);
  28. @if $first-value != 0 {
  29. @warn "First breakpoint in #{$map-name} must start at 0, but starts at #{$first-value}.";
  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. @function escape-svg($string) {
  49. @if str-index($string, "data:image/svg+xml") {
  50. @each $char, $encoded in $escaped-characters {
  51. $string: str-replace($string, $char, $encoded);
  52. }
  53. }
  54. @return $string;
  55. }
  56. // Color contrast
  57. @function color-yiq($color, $dark: $yiq-text-dark, $light: $yiq-text-light) {
  58. $r: red($color);
  59. $g: green($color);
  60. $b: blue($color);
  61. $yiq: (($r * 299) + ($g * 587) + ($b * 114)) / 1000;
  62. @if ($yiq >= $yiq-contrasted-threshold) {
  63. @return $dark;
  64. }
  65. @else {
  66. @return $light;
  67. }
  68. }
  69. // Retrieve color Sass maps
  70. @function color($key: "blue") {
  71. @return map-get($colors, $key);
  72. }
  73. @function theme-color($key: "primary") {
  74. @return map-get($theme-colors, $key);
  75. }
  76. @function gray($key: "100") {
  77. @return map-get($grays, $key);
  78. }
  79. // Request a theme color level
  80. @function theme-color-level($color-name: "primary", $level: 0) {
  81. $color: theme-color($color-name);
  82. $color-base: if($level > 0, $black, $white);
  83. $level: abs($level);
  84. @return mix($color-base, $color, $level * $theme-color-interval);
  85. }
  86. // Return valid calc
  87. @function add($value1, $value2, $return-calc: true) {
  88. @if $value1 == null {
  89. @return $value2;
  90. }
  91. @if $value2 == null {
  92. @return $value1;
  93. }
  94. @if type-of($value1) == number and type-of($value2) == number and comparable($value1, $value2) {
  95. @return $value1 + $value2;
  96. }
  97. @return if($return-calc == true, calc(#{$value1} + #{$value2}), $value1 + unquote(" + ") + $value2);
  98. }
  99. @function subtract($value1, $value2, $return-calc: true) {
  100. @if $value1 == null and $value2 == null {
  101. @return null;
  102. }
  103. @if $value1 == null {
  104. @return -$value2;
  105. }
  106. @if $value2 == null {
  107. @return $value1;
  108. }
  109. @if type-of($value1) == number and type-of($value2) == number and comparable($value1, $value2) {
  110. @return $value1 - $value2;
  111. }
  112. @return if($return-calc == true, calc(#{$value1} - #{$value2}), $value1 + unquote(" - ") + $value2);
  113. }