/
home
/
techb158
/
dev.balacoffee.com
/
resources
/
src
/
assets
/
styles
/
vendor
/
bootstrap-rtl
/
/home/techb158/dev.balacoffee.com/resources/src/assets/styles/vendor/bootstrap-rtl
mkdir
upload
Name
Size
Mode
Actions
mixins/
-
0755
rm
utilities/
-
0755
rm
bootstrap-grid.scss
680
0644
edit
dl
rm
bootstrap-reboot.scss
422
0644
edit
dl
rm
bootstrap.scss
923
0644
edit
dl
rm
_alert.scss
1201
0644
edit
dl
rm
_badge.scss
1029
0644
edit
dl
rm
_breadcrumb.scss
1287
0644
edit
dl
rm
_button-group.scss
3813
0644
edit
dl
rm
_buttons.scss
2857
0644
edit
dl
rm
_card.scss
5963
0644
edit
dl
rm
_carousel.scss
4510
0644
edit
dl
rm
_close.scss
894
0644
edit
dl
rm
_code.scss
1193
0644
edit
dl
rm
_custom-forms.scss
8094
0644
edit
dl
rm
_dropdown.scss
3242
0644
edit
dl
rm
_forms.scss
9099
0644
edit
dl
rm
_functions.scss
2743
0644
edit
dl
rm
_grid.scss
1068
0644
edit
dl
rm
_images.scss
1188
0644
edit
dl
rm
_input-group.scss
5023
0644
edit
dl
rm
_jumbotron.scss
394
0644
edit
dl
rm
_list-group.scss
3002
0644
edit
dl
rm
_media.scss
91
0644
edit
dl
rm
_mixins.scss
1060
0644
edit
dl
rm
_modal.scss
4791
0644
edit
dl
rm
_nav.scss
2140
0644
edit
dl
rm
_navbar.scss
7092
0644
edit
dl
rm
_pagination.scss
1911
0644
edit
dl
rm
_popover.scss
5022
0644
edit
dl
rm
_print.scss
2892
0644
edit
dl
rm
_progress.scss
894
0644
edit
dl
rm
_reboot.scss
12073
0644
edit
dl
rm
_root.scss
591
0644
edit
dl
rm
_tables.scss
3606
0644
edit
dl
rm
_tooltip.scss
2778
0644
edit
dl
rm
_transitions.scss
488
0644
edit
dl
rm
_type.scss
2240
0644
edit
dl
rm
_utilities.scss
421
0644
edit
dl
rm
_variables.scss
36641
0644
edit
dl
rm
Edit:
/home/techb158/dev.balacoffee.com/resources/src/assets/styles/vendor/bootstrap-rtl/_functions.scss
(2743B)
// Bootstrap functions // // Utility mixins and functions for evalutating 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 { // 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 // Another grid mixin that ensures the min-width of the lowest breakpoint starts at 0. @mixin _assert-starts-at-zero($map) { $values: map-values($map); $first-value: nth($values, 1); @if $first-value != 0 { @warn "First breakpoint in `$grid-breakpoints` 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; } // Color contrast @function color-yiq($color) { $r: red($color); $g: green($color); $b: blue($color); $yiq: (($r * 299) + ($g * 587) + ($b * 114)) / 1000; @if ($yiq >= $yiq-contrasted-threshold) { @return $yiq-text-dark; } @else { @return $yiq-text-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, #000, #fff); $level: abs($level); @return mix($color-base, $color, $level * $theme-color-interval); }
Save
cmd:
run