bootstrap 4.0.0.alpha4 → 4.0.0.alpha5

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of bootstrap might be problematic. Click here for more details.

Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -2
  3. data/assets/javascripts/bootstrap.js +1625 -1768
  4. data/assets/javascripts/bootstrap.min.js +3 -3
  5. data/assets/javascripts/bootstrap/alert.js +83 -96
  6. data/assets/javascripts/bootstrap/button.js +61 -68
  7. data/assets/javascripts/bootstrap/carousel.js +250 -270
  8. data/assets/javascripts/bootstrap/collapse.js +176 -190
  9. data/assets/javascripts/bootstrap/dropdown.js +143 -155
  10. data/assets/javascripts/bootstrap/modal.js +286 -310
  11. data/assets/javascripts/bootstrap/popover.js +61 -69
  12. data/assets/javascripts/bootstrap/scrollspy.js +145 -157
  13. data/assets/javascripts/bootstrap/tab.js +122 -132
  14. data/assets/javascripts/bootstrap/tooltip.js +313 -341
  15. data/assets/javascripts/bootstrap/util.js +9 -16
  16. data/assets/stylesheets/_bootstrap.scss +1 -1
  17. data/assets/stylesheets/bootstrap/_alert.scss +3 -3
  18. data/assets/stylesheets/bootstrap/_animation.scss +12 -3
  19. data/assets/stylesheets/bootstrap/_button-group.scss +1 -0
  20. data/assets/stylesheets/bootstrap/_card.scss +3 -1
  21. data/assets/stylesheets/bootstrap/_custom-forms.scss +7 -10
  22. data/assets/stylesheets/bootstrap/_dropdown.scss +1 -0
  23. data/assets/stylesheets/bootstrap/_forms.scss +16 -6
  24. data/assets/stylesheets/bootstrap/_images.scss +2 -11
  25. data/assets/stylesheets/bootstrap/_list-group.scss +2 -0
  26. data/assets/stylesheets/bootstrap/_mixins.scss +1 -1
  27. data/assets/stylesheets/bootstrap/_modal.scss +4 -2
  28. data/assets/stylesheets/bootstrap/_navbar.scss +72 -13
  29. data/assets/stylesheets/bootstrap/_normalize.scss +51 -53
  30. data/assets/stylesheets/bootstrap/_popover.scss +74 -50
  31. data/assets/stylesheets/bootstrap/_print.scss +8 -2
  32. data/assets/stylesheets/bootstrap/_reboot.scss +7 -12
  33. data/assets/stylesheets/bootstrap/_tables.scss +1 -1
  34. data/assets/stylesheets/bootstrap/_tooltip.scss +15 -12
  35. data/assets/stylesheets/bootstrap/_utilities.scss +3 -1
  36. data/assets/stylesheets/bootstrap/_variables.scss +56 -28
  37. data/assets/stylesheets/bootstrap/mixins/_background-variant.scss +0 -1
  38. data/assets/stylesheets/bootstrap/mixins/{_pulls.scss → _float.scss} +2 -2
  39. data/assets/stylesheets/bootstrap/mixins/_forms.scss +6 -11
  40. data/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +8 -9
  41. data/assets/stylesheets/bootstrap/mixins/_grid.scss +31 -8
  42. data/assets/stylesheets/bootstrap/mixins/_hover.scss +1 -1
  43. data/assets/stylesheets/bootstrap/mixins/_image.scss +6 -4
  44. data/assets/stylesheets/bootstrap/mixins/_screen-reader.scss +1 -1
  45. data/assets/stylesheets/bootstrap/utilities/_align.scss +6 -0
  46. data/assets/stylesheets/bootstrap/utilities/_borders.scss +30 -0
  47. data/assets/stylesheets/bootstrap/utilities/_float.scss +13 -0
  48. data/assets/stylesheets/bootstrap/utilities/_spacing.scss +10 -9
  49. data/assets/stylesheets/bootstrap/utilities/_text.scss +8 -0
  50. data/lib/bootstrap/version.rb +2 -2
  51. data/templates/project/_bootstrap-variables.scss +55 -27
  52. metadata +6 -4
  53. data/assets/stylesheets/bootstrap/utilities/_pulls.scss +0 -13
@@ -7,10 +7,12 @@
7
7
  //
8
8
  // Keep images from scaling beyond the width of their parents.
9
9
 
10
- @mixin img-fluid($display: block) {
11
- display: $display;
12
- max-width: 100%; // Part 1: Set a maximum relative to the parent
13
- height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching
10
+ @mixin img-fluid {
11
+ // Part 1: Set a maximum relative to the parent
12
+ max-width: 100%;
13
+ // Part 2: Override the height to auto, otherwise images will be stretched
14
+ // when setting a width and height attribute on the img element.
15
+ height: auto;
14
16
  }
15
17
 
16
18
 
@@ -15,7 +15,7 @@
15
15
 
16
16
  // Use in conjunction with .sr-only to only display content when it's focused.
17
17
  //
18
- // Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
18
+ // Useful for "Skip to main content" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
19
19
  //
20
20
  // Credit: HTML5 Boilerplate
21
21
 
@@ -0,0 +1,6 @@
1
+ .align-baseline { vertical-align: baseline !important; } // Browser default
2
+ .align-top { vertical-align: top !important; }
3
+ .align-middle { vertical-align: middle !important; }
4
+ .align-bottom { vertical-align: bottom !important; }
5
+ .align-text-bottom { vertical-align: text-bottom !important; }
6
+ .align-text-top { vertical-align: text-top !important; }
@@ -0,0 +1,30 @@
1
+ //
2
+ // Border-width
3
+ //
4
+
5
+ // TBD...?
6
+
7
+
8
+ //
9
+ // Border-radius
10
+ //
11
+
12
+ .rounded {
13
+ @include border-radius($border-radius);
14
+ }
15
+ .rounded-top {
16
+ @include border-top-radius($border-radius);
17
+ }
18
+ .rounded-right {
19
+ @include border-right-radius($border-radius);
20
+ }
21
+ .rounded-bottom {
22
+ @include border-bottom-radius($border-radius);
23
+ }
24
+ .rounded-left {
25
+ @include border-left-radius($border-radius);
26
+ }
27
+
28
+ .rounded-circle {
29
+ border-radius: 50%;
30
+ }
@@ -0,0 +1,13 @@
1
+ @each $breakpoint in map-keys($grid-breakpoints) {
2
+ @include media-breakpoint-up($breakpoint) {
3
+ .float-#{$breakpoint}-left {
4
+ @include float-left();
5
+ }
6
+ .float-#{$breakpoint}-right {
7
+ @include float-right();
8
+ }
9
+ .float-#{$breakpoint}-none {
10
+ float: none !important;
11
+ }
12
+ }
13
+ }
@@ -1,10 +1,11 @@
1
- // Width
1
+ // Width and height
2
2
 
3
3
  .w-100 { width: 100% !important; }
4
+ .h-100 { height: 100% !important; }
4
5
 
5
6
  // Margin and Padding
6
7
 
7
- .m-x-auto {
8
+ .mx-auto {
8
9
  margin-right: auto !important;
9
10
  margin-left: auto !important;
10
11
  }
@@ -14,18 +15,18 @@
14
15
  $length-x: map-get($lengths, x);
15
16
  $length-y: map-get($lengths, y);
16
17
 
17
- .#{$abbrev}-a-#{$size} { #{$prop}: $length-y $length-x !important; } // a = All sides
18
- .#{$abbrev}-t-#{$size} { #{$prop}-top: $length-y !important; }
19
- .#{$abbrev}-r-#{$size} { #{$prop}-right: $length-x !important; }
20
- .#{$abbrev}-b-#{$size} { #{$prop}-bottom: $length-y !important; }
21
- .#{$abbrev}-l-#{$size} { #{$prop}-left: $length-x !important; }
18
+ .#{$abbrev}-#{$size} { #{$prop}: $length-y $length-x !important; } // a = All sides
19
+ .#{$abbrev}t-#{$size} { #{$prop}-top: $length-y !important; }
20
+ .#{$abbrev}r-#{$size} { #{$prop}-right: $length-x !important; }
21
+ .#{$abbrev}b-#{$size} { #{$prop}-bottom: $length-y !important; }
22
+ .#{$abbrev}l-#{$size} { #{$prop}-left: $length-x !important; }
22
23
 
23
24
  // Axes
24
- .#{$abbrev}-x-#{$size} {
25
+ .#{$abbrev}x-#{$size} {
25
26
  #{$prop}-right: $length-x !important;
26
27
  #{$prop}-left: $length-x !important;
27
28
  }
28
- .#{$abbrev}-y-#{$size} {
29
+ .#{$abbrev}y-#{$size} {
29
30
  #{$prop}-top: $length-y !important;
30
31
  #{$prop}-bottom: $length-y !important;
31
32
  }
@@ -32,6 +32,10 @@
32
32
 
33
33
  // Contextual colors
34
34
 
35
+ .text-white {
36
+ color: #fff !important;
37
+ }
38
+
35
39
  @include text-emphasis-variant('.text-muted', $text-muted);
36
40
 
37
41
  @include text-emphasis-variant('.text-primary', $brand-primary);
@@ -44,6 +48,10 @@
44
48
 
45
49
  @include text-emphasis-variant('.text-danger', $brand-danger);
46
50
 
51
+ // Font color
52
+
53
+ @include text-emphasis-variant('.text-gray-dark', $gray-dark);
54
+
47
55
  // Misc
48
56
 
49
57
  .text-hide {
@@ -1,4 +1,4 @@
1
1
  module Bootstrap
2
- VERSION = '4.0.0.alpha4'
3
- BOOTSTRAP_SHA = '295c93846c154fb461f85b30e663102f7e171104'
2
+ VERSION = '4.0.0.alpha5'
3
+ BOOTSTRAP_SHA = 'b5890e0608ad2262cde4a38e90afa19f1cb5d852'
4
4
  end
@@ -1,4 +1,4 @@
1
- // Override Bootstrap variables here (defaults from bootstrap v4.0.0-alpha.4):
1
+ // Override Bootstrap variables here (defaults from bootstrap v4.0.0-alpha.5):
2
2
 
3
3
 
4
4
  // Table of Contents
@@ -107,7 +107,7 @@
107
107
 
108
108
  // $grid-breakpoints: (
109
109
  // xs: 0,
110
- // sm: 544px,
110
+ // sm: 576px,
111
111
  // md: 768px,
112
112
  // lg: 992px,
113
113
  // xl: 1200px
@@ -119,9 +119,9 @@
119
119
  // Define the maximum width of `.container` for different screen sizes.
120
120
 
121
121
  // $container-max-widths: (
122
- // sm: 576px,
122
+ // sm: 540px,
123
123
  // md: 720px,
124
- // lg: 940px,
124
+ // lg: 960px,
125
125
  // xl: 1140px
126
126
  // );
127
127
 
@@ -130,9 +130,15 @@
130
130
  //
131
131
  // Set the number of columns and specify the width of the gutters.
132
132
 
133
- // $grid-columns: 12;
134
- // $grid-gutter-width: 30px;
135
-
133
+ // $grid-columns: 12;
134
+ // $grid-gutter-width-base: 30px;
135
+ // $grid-gutter-widths: (
136
+ // xs: $grid-gutter-width-base,
137
+ // sm: $grid-gutter-width-base,
138
+ // md: $grid-gutter-width-base,
139
+ // lg: $grid-gutter-width-base,
140
+ // xl: $grid-gutter-width-base
141
+ // );
136
142
 
137
143
  // Typography
138
144
  //
@@ -309,7 +315,7 @@
309
315
 
310
316
  // $input-bg-focus: $input-bg;
311
317
  // $input-border-focus: #66afe9;
312
- // $input-box-shadow-focus: rgba(102,175,233,.6);
318
+ // $input-box-shadow-focus: $input-box-shadow, 0 0 8px rgba(102,175,233,.6);
313
319
  // $input-color-focus: $input-color;
314
320
 
315
321
  // $input-color-placeholder: #999;
@@ -355,13 +361,15 @@
355
361
  // $custom-control-active-indicator-box-shadow: none;
356
362
 
357
363
  // $custom-checkbox-radius: $border-radius;
358
- // $custom-checkbox-checked-icon: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' 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");
364
+ // $custom-checkbox-checked-icon: 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-checked-indicator-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");
365
+
359
366
  // $custom-checkbox-indeterminate-bg: #0074d9;
360
- // $custom-checkbox-indeterminate-icon: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
367
+ // $custom-checkbox-indeterminate-indicator-color: $custom-control-checked-indicator-color;
368
+ // $custom-checkbox-indeterminate-icon: 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-indeterminate-indicator-color}' d='M0 2h4'/%3E%3C/svg%3E");
361
369
  // $custom-checkbox-indeterminate-box-shadow: none;
362
370
 
363
371
  // $custom-radio-radius: 50%;
364
- // $custom-radio-checked-icon: 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='%23fff'/%3E%3C/svg%3E");
372
+ // $custom-radio-checked-icon: 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-checked-indicator-color}'/%3E%3C/svg%3E");
365
373
 
366
374
  // $custom-select-padding-x: .75rem ;
367
375
  // $custom-select-padding-y: .375rem;
@@ -371,7 +379,8 @@
371
379
  // $custom-select-bg: #fff;
372
380
  // $custom-select-disabled-bg: $gray-lighter;
373
381
  // $custom-select-bg-size: 8px 10px; // In pixels because image dimensions
374
- // $custom-select-indicator: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E");
382
+ // $custom-select-indicator-color: #333;
383
+ // $custom-select-indicator: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='#{$custom-select-indicator-color}' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E");
375
384
  // $custom-select-border-width: $input-btn-border-width;
376
385
  // $custom-select-border-color: $input-border-color;
377
386
  // $custom-select-border-radius: $border-radius;
@@ -408,23 +417,28 @@
408
417
 
409
418
 
410
419
  // Form validation icons
411
- // $form-icon-success: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%235cb85c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");
412
- // $form-icon-warning: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f0ad4e' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E");
413
- // $form-icon-danger: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E");
420
+ // $form-icon-success-color: $brand-success;
421
+ // $form-icon-success: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#{$form-icon-success-color}' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");
422
+
423
+ // $form-icon-warning-color: $brand-warning;
424
+ // $form-icon-warning: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#{$form-icon-warning-color}' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E");
425
+
426
+ // $form-icon-danger-color: $brand-danger;
427
+ // $form-icon-danger: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$form-icon-danger-color}' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E");
414
428
 
415
429
 
416
430
  // Dropdowns
417
431
  //
418
432
  // Dropdown menu container and contents.
419
433
 
420
- // $dropdown-min-width: 160px;
421
- // $dropdown-padding-y: 5px;
422
- // $dropdown-margin-top: 2px;
434
+ // $dropdown-min-width: 10rem;
435
+ // $dropdown-padding-y: .5rem;
436
+ // $dropdown-margin-top: .125rem;
423
437
  // $dropdown-bg: #fff;
424
438
  // $dropdown-border-color: rgba(0,0,0,.15);
425
439
  // $dropdown-border-width: $border-width;
426
440
  // $dropdown-divider-bg: #e5e5e5;
427
- // $dropdown-box-shadow: 0 6px 12px rgba(0,0,0,.175);
441
+ // $dropdown-box-shadow: 0 .5rem 1rem rgba(0,0,0,.175);
428
442
 
429
443
  // $dropdown-link-color: $gray-dark;
430
444
  // $dropdown-link-hover-color: darken($gray-dark, 5%);
@@ -435,7 +449,7 @@
435
449
 
436
450
  // $dropdown-link-disabled-color: $gray-light;
437
451
 
438
- // $dropdown-item-padding-x: 20px;
452
+ // $dropdown-item-padding-x: 1.5rem;
439
453
 
440
454
  // $dropdown-header-color: $gray-light;
441
455
 
@@ -461,18 +475,31 @@
461
475
  // $navbar-border-radius: $border-radius;
462
476
  // $navbar-padding-x: $spacer;
463
477
  // $navbar-padding-y: ($spacer / 2);
478
+
464
479
  // $navbar-brand-padding-y: .25rem;
465
480
 
481
+ // $navbar-divider-padding-y: .425rem;
482
+
483
+ // $navbar-toggler-padding-x: .75rem;
484
+ // $navbar-toggler-padding-y: .5rem;
485
+ // $navbar-toggler-font-size: $font-size-lg;
486
+ // $navbar-toggler-border-radius: $btn-border-radius;
487
+ // $navbar-toggler-padding-x: .75rem;
488
+ // $navbar-toggler-padding-y: .5rem;
489
+
466
490
  // $navbar-dark-color: rgba(255,255,255,.5);
467
491
  // $navbar-dark-hover-color: rgba(255,255,255,.75);
468
492
  // $navbar-dark-active-color: rgba(255,255,255,1);
469
493
  // $navbar-dark-disabled-color: rgba(255,255,255,.25);
494
+ // $navbar-dark-toggler-bg: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-dark-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
495
+ // $navbar-dark-toggler-border: rgba(255,255,255,.1);
470
496
 
471
- // $navbar-light-color: rgba(0,0,0,.3);
472
- // $navbar-light-hover-color: rgba(0,0,0,.6);
473
- // $navbar-light-active-color: rgba(0,0,0,.8);
474
- // $navbar-light-disabled-color: rgba(0,0,0,.15);
475
-
497
+ // $navbar-light-color: rgba(0,0,0,.5);
498
+ // $navbar-light-hover-color: rgba(0,0,0,.7);
499
+ // $navbar-light-active-color: rgba(0,0,0,.9);
500
+ // $navbar-light-disabled-color: rgba(0,0,0,.3);
501
+ // $navbar-light-toggler-bg: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-light-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
502
+ // $navbar-light-toggler-border: rgba(0,0,0,.1);
476
503
 
477
504
  // Navs
478
505
 
@@ -561,7 +588,7 @@
561
588
  // $card-border-width: 1px;
562
589
  // $card-border-radius: $border-radius;
563
590
  // $card-border-color: rgba(0,0,0,.125);
564
- // $card-border-radius-inner: $card-border-radius;
591
+ // $card-border-radius-inner: calc(#{$card-border-radius} - #{$card-border-width});
565
592
  // $card-cap-bg: #f5f5f5;
566
593
  // $card-bg: #fff;
567
594
 
@@ -665,7 +692,8 @@
665
692
  //
666
693
  // Define alert colors, border radius, and padding.
667
694
 
668
- // $alert-padding: 1rem;
695
+ // $alert-padding-x: 1.25rem;
696
+ // $alert-padding-y: .75rem;
669
697
  // $alert-border-radius: $border-radius;
670
698
  // $alert-link-font-weight: bold;
671
699
  // $alert-border-width: $border-width;
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootstrap
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0.alpha4
4
+ version: 4.0.0.alpha5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Twitter, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-10 00:00:00.000000000 Z
11
+ date: 2016-10-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass
@@ -295,6 +295,7 @@ files:
295
295
  - assets/stylesheets/bootstrap/mixins/_buttons.scss
296
296
  - assets/stylesheets/bootstrap/mixins/_cards.scss
297
297
  - assets/stylesheets/bootstrap/mixins/_clearfix.scss
298
+ - assets/stylesheets/bootstrap/mixins/_float.scss
298
299
  - assets/stylesheets/bootstrap/mixins/_forms.scss
299
300
  - assets/stylesheets/bootstrap/mixins/_gradients.scss
300
301
  - assets/stylesheets/bootstrap/mixins/_grid-framework.scss
@@ -307,7 +308,6 @@ files:
307
308
  - assets/stylesheets/bootstrap/mixins/_navbar-align.scss
308
309
  - assets/stylesheets/bootstrap/mixins/_pagination.scss
309
310
  - assets/stylesheets/bootstrap/mixins/_progress.scss
310
- - assets/stylesheets/bootstrap/mixins/_pulls.scss
311
311
  - assets/stylesheets/bootstrap/mixins/_reset-filter.scss
312
312
  - assets/stylesheets/bootstrap/mixins/_reset-text.scss
313
313
  - assets/stylesheets/bootstrap/mixins/_resize.scss
@@ -319,11 +319,13 @@ files:
319
319
  - assets/stylesheets/bootstrap/mixins/_text-emphasis.scss
320
320
  - assets/stylesheets/bootstrap/mixins/_text-hide.scss
321
321
  - assets/stylesheets/bootstrap/mixins/_text-truncate.scss
322
+ - assets/stylesheets/bootstrap/utilities/_align.scss
322
323
  - assets/stylesheets/bootstrap/utilities/_background.scss
324
+ - assets/stylesheets/bootstrap/utilities/_borders.scss
323
325
  - assets/stylesheets/bootstrap/utilities/_clearfix.scss
324
326
  - assets/stylesheets/bootstrap/utilities/_display.scss
325
327
  - assets/stylesheets/bootstrap/utilities/_flex.scss
326
- - assets/stylesheets/bootstrap/utilities/_pulls.scss
328
+ - assets/stylesheets/bootstrap/utilities/_float.scss
327
329
  - assets/stylesheets/bootstrap/utilities/_screenreaders.scss
328
330
  - assets/stylesheets/bootstrap/utilities/_spacing.scss
329
331
  - assets/stylesheets/bootstrap/utilities/_text.scss
@@ -1,13 +0,0 @@
1
- @each $breakpoint in map-keys($grid-breakpoints) {
2
- @include media-breakpoint-up($breakpoint) {
3
- .pull-#{$breakpoint}-left {
4
- @include pull-left();
5
- }
6
- .pull-#{$breakpoint}-right {
7
- @include pull-right();
8
- }
9
- .pull-#{$breakpoint}-none {
10
- float: none !important;
11
- }
12
- }
13
- }