binco 3.2.1 → 3.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 55acfafa3aa8d2875da91f15e81504c2a97aa384
4
- data.tar.gz: 27edc7b862a2011d93136465ff7f9c90b480944e
3
+ metadata.gz: a094ad55e1b32889a8ec1d24287eea6ea76b92b7
4
+ data.tar.gz: 2917546b2fe9fee04fc0b8d14650e8db4dfd9cb0
5
5
  SHA512:
6
- metadata.gz: 41dd8e8b89a37a0ef9c9616c02626849dbf8b0dc63015d5e0991bebbf794ab84b1ac860550bb98497c81727bfacf8a461bc169a51d8562562b2da3d8c3288fff
7
- data.tar.gz: cb0d5bdd989797f9e7067599f987370d8bd3cd056fc684defb4fb84bdd4e8c36069362634a4646bf5b12075a02c3bfb3560fe29b3cde48573c0c62751197d77b
6
+ metadata.gz: e2afc4b9c5b6f73ecc5f5998aa19945433d1f0ac907ed724eac39812e885e7f68f2596c0d527c3bf1fb8f4374f9824b368264bc5e51add246ba401bf7f3f0dea
7
+ data.tar.gz: '0847afd4ac294bb6f71369eddd240886737bdf4f1b95533fbee07202bafd330c3763371207843f1e296bd35687bf927da92009f6fe1393a2c12c1dcb4c886b94'
@@ -1,3 +1,3 @@
1
1
  module Binco
2
- VERSION = '3.2.1'
2
+ VERSION = '3.3.0'
3
3
  end
@@ -8,7 +8,6 @@
8
8
  // Color system
9
9
  //
10
10
  //
11
- // stylelint-disable
12
11
  // $white: #fff !default;
13
12
  // $gray-100: #f8f9fa !default;
14
13
  // $gray-200: #e9ecef !default;
@@ -22,17 +21,22 @@
22
21
  // $black: #000 !default;
23
22
  //
24
23
  // $grays: () !default;
25
- // $grays: map-merge((
26
- // "100": $gray-100,
27
- // "200": $gray-200,
28
- // "300": $gray-300,
29
- // "400": $gray-400,
30
- // "500": $gray-500,
31
- // "600": $gray-600,
32
- // "700": $gray-700,
33
- // "800": $gray-800,
34
- // "900": $gray-900
35
- // ), $grays);
24
+ // stylelint-disable-next-line scss/dollar-variable-default
25
+ // $grays: map-merge(
26
+ // (
27
+ // "100": $gray-100,
28
+ // "200": $gray-200,
29
+ // "300": $gray-300,
30
+ // "400": $gray-400,
31
+ // "500": $gray-500,
32
+ // "600": $gray-600,
33
+ // "700": $gray-700,
34
+ // "800": $gray-800,
35
+ // "900": $gray-900
36
+ // ),
37
+ // $grays
38
+ // );
39
+ //
36
40
  //
37
41
  // $blue: #007bff !default;
38
42
  // $indigo: #6610f2 !default;
@@ -46,21 +50,25 @@
46
50
  // $cyan: #17a2b8 !default;
47
51
  //
48
52
  // $colors: () !default;
49
- // $colors: map-merge((
50
- // "blue": $blue,
51
- // "indigo": $indigo,
52
- // "purple": $purple,
53
- // "pink": $pink,
54
- // "red": $red,
55
- // "orange": $orange,
56
- // "yellow": $yellow,
57
- // "green": $green,
58
- // "teal": $teal,
59
- // "cyan": $cyan,
60
- // "white": $white,
61
- // "gray": $gray-600,
62
- // "gray-dark": $gray-800
63
- // ), $colors);
53
+ // stylelint-disable-next-line scss/dollar-variable-default
54
+ // $colors: map-merge(
55
+ // (
56
+ // "blue": $blue,
57
+ // "indigo": $indigo,
58
+ // "purple": $purple,
59
+ // "pink": $pink,
60
+ // "red": $red,
61
+ // "orange": $orange,
62
+ // "yellow": $yellow,
63
+ // "green": $green,
64
+ // "teal": $teal,
65
+ // "cyan": $cyan,
66
+ // "white": $white,
67
+ // "gray": $gray-600,
68
+ // "gray-dark": $gray-800
69
+ // ),
70
+ // $colors
71
+ // );
64
72
  //
65
73
  // $primary: $blue !default;
66
74
  // $secondary: $gray-600 !default;
@@ -72,27 +80,30 @@
72
80
  // $dark: $gray-800 !default;
73
81
  //
74
82
  // $theme-colors: () !default;
75
- // $theme-colors: map-merge((
76
- // "primary": $primary,
77
- // "secondary": $secondary,
78
- // "success": $success,
79
- // "info": $info,
80
- // "warning": $warning,
81
- // "danger": $danger,
82
- // "light": $light,
83
- // "dark": $dark
84
- // ), $theme-colors);
85
- // stylelint-enable
83
+ // stylelint-disable-next-line scss/dollar-variable-default
84
+ // $theme-colors: map-merge(
85
+ // (
86
+ // "primary": $primary,
87
+ // "secondary": $secondary,
88
+ // "success": $success,
89
+ // "info": $info,
90
+ // "warning": $warning,
91
+ // "danger": $danger,
92
+ // "light": $light,
93
+ // "dark": $dark
94
+ // ),
95
+ // $theme-colors
96
+ // );
86
97
  //
87
98
  // Set a specific jump point for requesting color jumps
88
99
  // $theme-color-interval: 8% !default;
89
100
  //
90
101
  // The yiq lightness value that determines when the lightness of color changes from "dark" to "light". Acceptable values are between 0 and 255.
91
- // $yiq-contrasted-threshold: 150 !default;
102
+ // $yiq-contrasted-threshold: 150 !default;
92
103
  //
93
104
  // Customize the light and dark text colors for use in our YIQ color contrast function.
94
- // $yiq-text-dark: $gray-900 !default;
95
- // $yiq-text-light: $white !default;
105
+ // $yiq-text-dark: $gray-900 !default;
106
+ // $yiq-text-light: $white !default;
96
107
  //
97
108
  // Options
98
109
  //
@@ -114,27 +125,34 @@
114
125
  // variables. Mostly focused on spacing.
115
126
  // You can add more entries to the $spacers map, should you need more variation.
116
127
  //
117
- // stylelint-disable
118
128
  // $spacer: 1rem !default;
119
129
  // $spacers: () !default;
120
- // $spacers: map-merge((
121
- // 0: 0,
122
- // 1: ($spacer * .25),
123
- // 2: ($spacer * .5),
124
- // 3: $spacer,
125
- // 4: ($spacer * 1.5),
126
- // 5: ($spacer * 3)
127
- // ), $spacers);
130
+ // stylelint-disable-next-line scss/dollar-variable-default
131
+ // $spacers: map-merge(
132
+ // (
133
+ // 0: 0,
134
+ // 1: ($spacer * .25),
135
+ // 2: ($spacer * .5),
136
+ // 3: $spacer,
137
+ // 4: ($spacer * 1.5),
138
+ // 5: ($spacer * 3)
139
+ // ),
140
+ // $spacers
141
+ // );
128
142
  //
129
143
  // This variable affects the `.h-*` and `.w-*` classes.
130
144
  // $sizes: () !default;
131
- // $sizes: map-merge((
132
- // 25: 25%,
133
- // 50: 50%,
134
- // 75: 75%,
135
- // 100: 100%
136
- // ), $sizes);
137
- // stylelint-enable
145
+ // stylelint-disable-next-line scss/dollar-variable-default
146
+ // $sizes: map-merge(
147
+ // (
148
+ // 25: 25%,
149
+ // 50: 50%,
150
+ // 75: 75%,
151
+ // 100: 100%,
152
+ // auto: auto
153
+ // ),
154
+ // $sizes
155
+ // );
138
156
  //
139
157
  // Body
140
158
  //
@@ -165,11 +183,11 @@
165
183
  // adapting to different screen sizes, for use in media queries.
166
184
  //
167
185
  // $grid-breakpoints: (
168
- // xs: 0,
169
- // sm: 576px,
170
- // md: 768px,
171
- // lg: 992px,
172
- // xl: 1200px
186
+ // xs: 0,
187
+ // sm: 576px,
188
+ // md: 768px,
189
+ // lg: 992px,
190
+ // xl: 1200px
173
191
  // ) !default;
174
192
  //
175
193
  // @include _assert-ascending($grid-breakpoints, "$grid-breakpoints");
@@ -181,10 +199,10 @@
181
199
  // Define the maximum width of `.container` for different screen sizes.
182
200
  //
183
201
  // $container-max-widths: (
184
- // sm: 540px,
185
- // md: 720px,
186
- // lg: 960px,
187
- // xl: 1140px
202
+ // sm: 540px,
203
+ // md: 720px,
204
+ // lg: 960px,
205
+ // xl: 1140px
188
206
  // ) !default;
189
207
  //
190
208
  // @include _assert-ascending($container-max-widths, "$container-max-widths");
@@ -211,6 +229,10 @@
211
229
  // $border-radius-lg: .3rem !default;
212
230
  // $border-radius-sm: .2rem !default;
213
231
  //
232
+ // $box-shadow-sm: 0 .125rem .25rem rgba($black, .075) !default;
233
+ // $box-shadow: 0 .5rem 1rem rgba($black, .15) !default;
234
+ // $box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default;
235
+ //
214
236
  // $component-active-color: $white !default;
215
237
  // $component-active-bg: theme-color("primary") !default;
216
238
  //
@@ -226,7 +248,7 @@
226
248
  // Font, line-height, and color for body text, headings, and more.
227
249
  //
228
250
  // stylelint-disable value-keyword-case
229
- // $font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
251
+ // $font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
230
252
  // $font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
231
253
  // $font-family-base: $font-family-sans-serif !default;
232
254
  // stylelint-enable value-keyword-case
@@ -317,6 +339,9 @@
317
339
  // $table-dark-border-color: lighten($gray-900, 7.5%) !default;
318
340
  // $table-dark-color: $body-bg !default;
319
341
  //
342
+ // $table-striped-order: odd !default;
343
+ //
344
+ // $table-caption-color: $text-muted !default;
320
345
  //
321
346
  // Buttons + Forms
322
347
  //
@@ -380,6 +405,8 @@
380
405
  //
381
406
  // Forms
382
407
  //
408
+ // $label-margin-bottom: .5rem !default;
409
+ //
383
410
  // $input-padding-y: $input-btn-padding-y !default;
384
411
  // $input-padding-x: $input-btn-padding-x !default;
385
412
  // $input-line-height: $input-btn-line-height !default;
@@ -411,6 +438,7 @@
411
438
  // $input-focus-box-shadow: $input-btn-focus-box-shadow !default;
412
439
  //
413
440
  // $input-placeholder-color: $gray-600 !default;
441
+ // $input-plaintext-color: $body-color !default;
414
442
  //
415
443
  // $input-height-border: $input-border-width * 2 !default;
416
444
  //
@@ -440,6 +468,8 @@
440
468
  // $input-group-addon-bg: $gray-200 !default;
441
469
  // $input-group-addon-border-color: $input-border-color !default;
442
470
  //
471
+ // $custom-forms-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
472
+ //
443
473
  // $custom-control-gutter: 1.5rem !default;
444
474
  // $custom-control-spacer-x: 1rem !default;
445
475
  //
@@ -449,7 +479,7 @@
449
479
  // $custom-control-indicator-box-shadow: inset 0 .25rem .25rem rgba($black, .1) !default;
450
480
  //
451
481
  // $custom-control-indicator-disabled-bg: $gray-200 !default;
452
- // $custom-control-label-disabled-color: $gray-600 !default;
482
+ // $custom-control-label-disabled-color: $gray-600 !default;
453
483
  //
454
484
  // $custom-control-indicator-checked-color: $component-active-color !default;
455
485
  // $custom-control-indicator-checked-bg: $component-active-bg !default;
@@ -465,22 +495,22 @@
465
495
  // $custom-checkbox-indicator-border-radius: $border-radius !default;
466
496
  // $custom-checkbox-indicator-icon-checked: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#{$custom-control-indicator-checked-color}' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"), "#", "%23") !default;
467
497
  //
468
- // $custom-checkbox-indicator-indeterminate-bg: $component-active-bg !default;
469
- // $custom-checkbox-indicator-indeterminate-color: $custom-control-indicator-checked-color !default;
470
- // $custom-checkbox-indicator-icon-indeterminate: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='#{$custom-checkbox-indicator-indeterminate-color}' d='M0 2h4'/%3E%3C/svg%3E"), "#", "%23") !default;
471
- // $custom-checkbox-indicator-indeterminate-box-shadow: none !default;
498
+ // $custom-checkbox-indicator-indeterminate-bg: $component-active-bg !default;
499
+ // $custom-checkbox-indicator-indeterminate-color: $custom-control-indicator-checked-color !default;
500
+ // $custom-checkbox-indicator-icon-indeterminate: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='#{$custom-checkbox-indicator-indeterminate-color}' d='M0 2h4'/%3E%3C/svg%3E"), "#", "%23") !default;
501
+ // $custom-checkbox-indicator-indeterminate-box-shadow: none !default;
472
502
  //
473
503
  // $custom-radio-indicator-border-radius: 50% !default;
474
504
  // $custom-radio-indicator-icon-checked: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='#{$custom-control-indicator-checked-color}'/%3E%3C/svg%3E"), "#", "%23") !default;
475
505
  //
476
506
  // $custom-select-padding-y: .375rem !default;
477
- // $custom-select-padding-x: .75rem !default;
507
+ // $custom-select-padding-x: .75rem !default;
478
508
  // $custom-select-height: $input-height !default;
479
509
  // $custom-select-indicator-padding: 1rem !default; // Extra padding to account for the presence of the background-image based indicator
480
510
  // $custom-select-line-height: $input-btn-line-height !default;
481
511
  // $custom-select-color: $input-color !default;
482
512
  // $custom-select-disabled-color: $gray-600 !default;
483
- // $custom-select-bg: $white !default;
513
+ // $custom-select-bg: $input-bg !default;
484
514
  // $custom-select-disabled-bg: $gray-200 !default;
485
515
  // $custom-select-bg-size: 8px 10px !default; // In pixels because image dimensions
486
516
  // $custom-select-indicator-color: $gray-800 !default;
@@ -488,9 +518,11 @@
488
518
  // $custom-select-border-width: $input-btn-border-width !default;
489
519
  // $custom-select-border-color: $input-border-color !default;
490
520
  // $custom-select-border-radius: $border-radius !default;
521
+ // $custom-select-box-shadow: inset 0 1px 2px rgba($black, .075) !default;
491
522
  //
492
523
  // $custom-select-focus-border-color: $input-focus-border-color !default;
493
- // $custom-select-focus-box-shadow: inset 0 1px 2px rgba($black, .075), 0 0 5px rgba($custom-select-focus-border-color, .5) !default;
524
+ // $custom-select-focus-width: $input-btn-focus-width !default;
525
+ // $custom-select-focus-box-shadow: 0 0 0 $custom-select-focus-width rgba($custom-select-focus-border-color, .5) !default;
494
526
  //
495
527
  // $custom-select-font-size-sm: 75% !default;
496
528
  // $custom-select-height-sm: $input-height-sm !default;
@@ -498,9 +530,28 @@
498
530
  // $custom-select-font-size-lg: 125% !default;
499
531
  // $custom-select-height-lg: $input-height-lg !default;
500
532
  //
533
+ // $custom-range-track-width: 100% !default;
534
+ // $custom-range-track-height: .5rem !default;
535
+ // $custom-range-track-cursor: pointer !default;
536
+ // $custom-range-track-bg: $gray-300 !default;
537
+ // $custom-range-track-border-radius: 1rem !default;
538
+ // $custom-range-track-box-shadow: inset 0 .25rem .25rem rgba($black, .1) !default;
539
+ //
540
+ // $custom-range-thumb-width: 1rem !default;
541
+ // $custom-range-thumb-height: $custom-range-thumb-width !default;
542
+ // $custom-range-thumb-bg: $component-active-bg !default;
543
+ // $custom-range-thumb-border: 0 !default;
544
+ // $custom-range-thumb-border-radius: 1rem !default;
545
+ // $custom-range-thumb-box-shadow: 0 .1rem .25rem rgba($black, .1) !default;
546
+ // $custom-range-thumb-focus-box-shadow: 0 0 0 1px $body-bg, $input-btn-focus-box-shadow !default;
547
+ // $custom-range-thumb-focus-box-shadow-width: $input-btn-focus-width !default; // For focus box shadow issue in IE/Edge
548
+ // $custom-range-thumb-active-bg: lighten($component-active-bg, 35%) !default;
549
+ //
501
550
  // $custom-file-height: $input-height !default;
551
+ // $custom-file-height-inner: $input-height-inner !default;
502
552
  // $custom-file-focus-border-color: $input-focus-border-color !default;
503
553
  // $custom-file-focus-box-shadow: $input-btn-focus-box-shadow !default;
554
+ // $custom-file-disabled-bg: $input-disabled-bg !default;
504
555
  //
505
556
  // $custom-file-padding-y: $input-btn-padding-y !default;
506
557
  // $custom-file-padding-x: $input-btn-padding-x !default;
@@ -585,6 +636,9 @@
585
636
  // $nav-pills-link-active-color: $component-active-color !default;
586
637
  // $nav-pills-link-active-bg: $component-active-bg !default;
587
638
  //
639
+ // $nav-divider-color: $gray-200 !default;
640
+ // $nav-divider-margin-y: ($spacer / 2) !default;
641
+ //
588
642
  // Navbar
589
643
  //
590
644
  // $navbar-padding-y: ($spacer / 2) !default;
@@ -633,6 +687,7 @@
633
687
  // $pagination-border-color: $gray-300 !default;
634
688
  //
635
689
  // $pagination-focus-box-shadow: $input-btn-focus-box-shadow !default;
690
+ // $pagination-focus-outline: 0 !default;
636
691
  //
637
692
  // $pagination-hover-color: $link-hover-color !default;
638
693
  // $pagination-hover-bg: $gray-200 !default;
@@ -676,19 +731,19 @@
676
731
  //
677
732
  // Tooltips
678
733
  //
679
- // $tooltip-font-size: $font-size-sm !default;
680
- // $tooltip-max-width: 200px !default;
681
- // $tooltip-color: $white !default;
682
- // $tooltip-bg: $black !default;
683
- // $tooltip-border-radius: $border-radius !default;
684
- // $tooltip-opacity: .9 !default;
685
- // $tooltip-padding-y: .25rem !default;
686
- // $tooltip-padding-x: .5rem !default;
687
- // $tooltip-margin: 0 !default;
734
+ // $tooltip-font-size: $font-size-sm !default;
735
+ // $tooltip-max-width: 200px !default;
736
+ // $tooltip-color: $white !default;
737
+ // $tooltip-bg: $black !default;
738
+ // $tooltip-border-radius: $border-radius !default;
739
+ // $tooltip-opacity: .9 !default;
740
+ // $tooltip-padding-y: .25rem !default;
741
+ // $tooltip-padding-x: .5rem !default;
742
+ // $tooltip-margin: 0 !default;
688
743
  //
689
- // $tooltip-arrow-width: .8rem !default;
690
- // $tooltip-arrow-height: .4rem !default;
691
- // $tooltip-arrow-color: $tooltip-bg !default;
744
+ // $tooltip-arrow-width: .8rem !default;
745
+ // $tooltip-arrow-height: .4rem !default;
746
+ // $tooltip-arrow-color: $tooltip-bg !default;
692
747
  //
693
748
  //
694
749
  // Popovers
@@ -734,26 +789,27 @@
734
789
  // Modals
735
790
  //
736
791
  // Padding applied to the modal body
737
- // $modal-inner-padding: 1rem !default;
792
+ // $modal-inner-padding: 1rem !default;
738
793
  //
739
- // $modal-dialog-margin: .5rem !default;
740
- // $modal-dialog-margin-y-sm-up: 1.75rem !default;
794
+ // $modal-dialog-margin: .5rem !default;
795
+ // $modal-dialog-margin-y-sm-up: 1.75rem !default;
741
796
  //
742
797
  // $modal-title-line-height: $line-height-base !default;
743
798
  //
744
- // $modal-content-bg: $white !default;
745
- // $modal-content-border-color: rgba($black, .2) !default;
746
- // $modal-content-border-width: $border-width !default;
747
- // $modal-content-box-shadow-xs: 0 .25rem .5rem rgba($black, .5) !default;
748
- // $modal-content-box-shadow-sm-up: 0 .5rem 1rem rgba($black, .5) !default;
749
- //
750
- // $modal-backdrop-bg: $black !default;
751
- // $modal-backdrop-opacity: .5 !default;
752
- // $modal-header-border-color: $gray-200 !default;
753
- // $modal-footer-border-color: $modal-header-border-color !default;
754
- // $modal-header-border-width: $modal-content-border-width !default;
755
- // $modal-footer-border-width: $modal-header-border-width !default;
756
- // $modal-header-padding: 1rem !default;
799
+ // $modal-content-bg: $white !default;
800
+ // $modal-content-border-color: rgba($black, .2) !default;
801
+ // $modal-content-border-width: $border-width !default;
802
+ // $modal-content-border-radius: $border-radius-lg !default;
803
+ // $modal-content-box-shadow-xs: 0 .25rem .5rem rgba($black, .5) !default;
804
+ // $modal-content-box-shadow-sm-up: 0 .5rem 1rem rgba($black, .5) !default;
805
+ //
806
+ // $modal-backdrop-bg: $black !default;
807
+ // $modal-backdrop-opacity: .5 !default;
808
+ // $modal-header-border-color: $gray-200 !default;
809
+ // $modal-footer-border-color: $modal-header-border-color !default;
810
+ // $modal-header-border-width: $modal-content-border-width !default;
811
+ // $modal-footer-border-width: $modal-header-border-width !default;
812
+ // $modal-header-padding: 1rem !default;
757
813
  //
758
814
  // $modal-lg: 800px !default;
759
815
  // $modal-md: 500px !default;
@@ -842,7 +898,9 @@
842
898
  // $breadcrumb-bg: $gray-200 !default;
843
899
  // $breadcrumb-divider-color: $gray-600 !default;
844
900
  // $breadcrumb-active-color: $gray-600 !default;
845
- // $breadcrumb-divider: "/" !default;
901
+ // $breadcrumb-divider: quote("/") !default;
902
+ //
903
+ // $breadcrumb-border-radius: $border-radius !default;
846
904
  //
847
905
  //
848
906
  // Carousel
@@ -864,7 +922,7 @@
864
922
  // $carousel-control-prev-icon-bg: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"), "#", "%23") !default;
865
923
  // $carousel-control-next-icon-bg: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"), "#", "%23") !default;
866
924
  //
867
- // $carousel-transition: transform .6s ease !default;
925
+ // $carousel-transition: transform .6s ease !default; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`)
868
926
  //
869
927
  //
870
928
  // Close
metadata CHANGED
@@ -1,14 +1,36 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: binco
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.1
4
+ version: 3.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Victor Camacho
8
8
  autorequire:
9
9
  bindir: bin
10
- cert_chain: []
11
- date: 2018-08-16 00:00:00.000000000 Z
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIDYDCCAkigAwIBAgIBATANBgkqhkiG9w0BAQUFADA7MQ8wDQYDVQQDDAZ2aWN0
14
+ b3IxFDASBgoJkiaJk/IsZAEZFgRjb2RuMRIwEAYKCZImiZPyLGQBGRYCbXgwHhcN
15
+ MTUwMzIwMTkwMTA4WhcNMTYwMzE5MTkwMTA4WjA7MQ8wDQYDVQQDDAZ2aWN0b3Ix
16
+ FDASBgoJkiaJk/IsZAEZFgRjb2RuMRIwEAYKCZImiZPyLGQBGRYCbXgwggEiMA0G
17
+ CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDmdMzllrIGptczoKmPRuYk4C++SE0S
18
+ 6HI44pD7EBkto4NkpECUJZnaUYf7xTpm7t68O7GwGT+0Vrljpx2W1To42/MonU60
19
+ fbFbOR8HmOvbb2WQY55axC+utQ6oqITPaBLg6thFYbRPAQwsUBN0F0NqExlPpRL5
20
+ oSih3LUKzp4qVcimzWMzCXAu127mkPmG+M+Xo4pUUtG4uz9d67ujSG2LX9oxIteQ
21
+ Ibs2TMh1WXAKttwi1wVBGgQujoHgGrOTq1bX72/a2tfFeIXrAt5H3hYhF7pToWhN
22
+ OHJRalpyDui37p0EksEz+bFJ8KsUWjlxlOjioemsxxp0YIEjEHZR6/ZNAgMBAAGj
23
+ bzBtMAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBTUBDel181sCLrY
24
+ 1ipjHl7bJ7vCijAZBgNVHREEEjAQgQ52aWN0b3JAY29kbi5teDAZBgNVHRIEEjAQ
25
+ gQ52aWN0b3JAY29kbi5teDANBgkqhkiG9w0BAQUFAAOCAQEABLmaFKUFaGnCO+uq
26
+ GMCQQRFBh7uJgJUndaAr8CheqaF0U+nJX2Xsggb1VCQDK6TNFVBdvIH+KSYJtu90
27
+ e6AKGdJKAqNetWKG4Wo9gycWcJdT5CzOWhXgwOi+O+8Z9p3j0pLkDMJTn0Li2+79
28
+ jb0AfMmll67rqqCq6Mmxx6rQQulE8CB1siuLzf6DfbrfrlGCe2Qy77pwFwqNoEPP
29
+ P/U4QAtdpmTbKreZ5f2TEXlF/kqXL79j2/ov8sd7B+aWNI3vEXKXiPALa+hupDWs
30
+ XdmvXYY6Fr9AHqSdbvphaVu+RqBpkBdGUQCcCZ73NjXSUwgJumx1p1A8e4NXrh1e
31
+ pYh0/Q==
32
+ -----END CERTIFICATE-----
33
+ date: 2018-09-19 00:00:00.000000000 Z
12
34
  dependencies:
13
35
  - !ruby/object:Gem::Dependency
14
36
  name: railties
@@ -34,16 +56,22 @@ dependencies:
34
56
  name: bootstrap
35
57
  requirement: !ruby/object:Gem::Requirement
36
58
  requirements:
37
- - - '='
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '4.0'
62
+ - - "<="
38
63
  - !ruby/object:Gem::Version
39
- version: 4.0.0
64
+ version: 4.1.3
40
65
  type: :runtime
41
66
  prerelease: false
42
67
  version_requirements: !ruby/object:Gem::Requirement
43
68
  requirements:
44
- - - '='
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: '4.0'
72
+ - - "<="
45
73
  - !ruby/object:Gem::Version
46
- version: 4.0.0
74
+ version: 4.1.3
47
75
  - !ruby/object:Gem::Dependency
48
76
  name: jquery-rails
49
77
  requirement: !ruby/object:Gem::Requirement
@@ -224,7 +252,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
224
252
  version: '0'
225
253
  requirements: []
226
254
  rubyforge_project:
227
- rubygems_version: 2.6.11
255
+ rubygems_version: 2.6.13
228
256
  signing_key:
229
257
  specification_version: 4
230
258
  summary: Bootstrap Sass for use in Ruby on Rails applications