bulma-rails 0.9.0 → 0.9.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/app/assets/stylesheets/bulma.sass +1 -1
  4. data/app/assets/stylesheets/sass/base/_all.sass +4 -2
  5. data/app/assets/stylesheets/sass/base/animations.sass +5 -0
  6. data/app/assets/stylesheets/sass/base/generic.sass +3 -0
  7. data/app/assets/stylesheets/sass/components/_all.sass +13 -12
  8. data/app/assets/stylesheets/sass/components/breadcrumb.sass +2 -0
  9. data/app/assets/stylesheets/sass/components/card.sass +25 -1
  10. data/app/assets/stylesheets/sass/components/dropdown.sass +3 -1
  11. data/app/assets/stylesheets/sass/components/level.sass +3 -1
  12. data/app/assets/stylesheets/sass/components/media.sass +16 -9
  13. data/app/assets/stylesheets/sass/components/menu.sass +2 -0
  14. data/app/assets/stylesheets/sass/components/message.sass +2 -0
  15. data/app/assets/stylesheets/sass/components/modal.sass +5 -1
  16. data/app/assets/stylesheets/sass/components/navbar.sass +6 -1
  17. data/app/assets/stylesheets/sass/components/pagination.sass +19 -3
  18. data/app/assets/stylesheets/sass/components/panel.sass +3 -1
  19. data/app/assets/stylesheets/sass/components/tabs.sass +2 -0
  20. data/app/assets/stylesheets/sass/elements/_all.sass +13 -12
  21. data/app/assets/stylesheets/sass/elements/box.sass +3 -1
  22. data/app/assets/stylesheets/sass/elements/button.sass +30 -8
  23. data/app/assets/stylesheets/sass/elements/container.sass +12 -7
  24. data/app/assets/stylesheets/sass/elements/content.sass +4 -0
  25. data/app/assets/stylesheets/sass/elements/icon.sass +25 -0
  26. data/app/assets/stylesheets/sass/elements/image.sass +2 -0
  27. data/app/assets/stylesheets/sass/elements/notification.sass +5 -1
  28. data/app/assets/stylesheets/sass/elements/other.sass +2 -10
  29. data/app/assets/stylesheets/sass/elements/progress.sass +7 -1
  30. data/app/assets/stylesheets/sass/elements/table.sass +5 -1
  31. data/app/assets/stylesheets/sass/elements/tag.sass +5 -1
  32. data/app/assets/stylesheets/sass/elements/title.sass +2 -2
  33. data/app/assets/stylesheets/sass/form/_all.sass +7 -6
  34. data/app/assets/stylesheets/sass/form/checkbox-radio.sass +2 -1
  35. data/app/assets/stylesheets/sass/form/file.sass +5 -1
  36. data/app/assets/stylesheets/sass/form/input-textarea.sass +3 -1
  37. data/app/assets/stylesheets/sass/form/select.sass +3 -1
  38. data/app/assets/stylesheets/sass/form/shared.sass +5 -0
  39. data/app/assets/stylesheets/sass/form/tools.sass +3 -1
  40. data/app/assets/stylesheets/sass/grid/_all.sass +3 -2
  41. data/app/assets/stylesheets/sass/grid/columns.sass +93 -84
  42. data/app/assets/stylesheets/sass/grid/tiles.sass +3 -1
  43. data/app/assets/stylesheets/sass/helpers/_all.sass +10 -8
  44. data/app/assets/stylesheets/sass/helpers/color.sass +2 -0
  45. data/app/assets/stylesheets/sass/helpers/flexbox.sass +35 -0
  46. data/app/assets/stylesheets/sass/helpers/float.sass +2 -0
  47. data/app/assets/stylesheets/sass/helpers/other.sass +6 -0
  48. data/app/assets/stylesheets/sass/helpers/position.sass +2 -0
  49. data/app/assets/stylesheets/sass/helpers/spacing.sass +4 -1
  50. data/app/assets/stylesheets/sass/helpers/typography.sass +5 -0
  51. data/app/assets/stylesheets/sass/helpers/visibility.sass +1 -1
  52. data/app/assets/stylesheets/sass/layout/_all.sass +4 -3
  53. data/app/assets/stylesheets/sass/layout/footer.sass +2 -0
  54. data/app/assets/stylesheets/sass/layout/hero.sass +11 -3
  55. data/app/assets/stylesheets/sass/layout/section.sass +6 -2
  56. data/app/assets/stylesheets/sass/utilities/_all.sass +7 -6
  57. data/app/assets/stylesheets/sass/utilities/animations.sass +1 -5
  58. data/app/assets/stylesheets/sass/utilities/controls.sass +2 -3
  59. data/app/assets/stylesheets/sass/utilities/derived-variables.sass +114 -0
  60. data/app/assets/stylesheets/sass/utilities/extends.sass +25 -0
  61. data/app/assets/stylesheets/sass/utilities/functions.sass +25 -4
  62. data/app/assets/stylesheets/sass/utilities/initial-variables.sass +5 -5
  63. data/app/assets/stylesheets/sass/utilities/mixins.sass +18 -23
  64. data/bulma-rails.gemspec +1 -1
  65. metadata +10 -7
  66. data/app/assets/stylesheets/sass/utilities/derived-variables.scss +0 -132
@@ -1,8 +1,14 @@
1
+ @import "../utilities/mixins"
2
+
1
3
  .is-radiusless
2
4
  border-radius: 0 !important
3
5
 
4
6
  .is-shadowless
5
7
  box-shadow: none !important
6
8
 
9
+ .is-clickable
10
+ cursor: pointer !important
11
+ pointer-events: all !important
12
+
7
13
  .is-unselectable
8
14
  @extend %unselectable
@@ -1,3 +1,5 @@
1
+ @import "../utilities/mixins"
2
+
1
3
  .is-overlay
2
4
  @extend %overlay
3
5
 
@@ -8,10 +8,13 @@ $spacing-shortcuts: ("margin": "m", "padding": "p") !default
8
8
  $spacing-directions: ("top": "t", "right": "r", "bottom": "b", "left": "l") !default
9
9
  $spacing-horizontal: "x" !default
10
10
  $spacing-vertical: "y" !default
11
- $spacing-values: ("0": 0, "1": 0.25rem, "2": 0.5rem, "3": 0.75rem, "4": 1rem, "5": 1.5rem, "6": 3rem) !default
11
+ $spacing-values: ("0": 0, "1": 0.25rem, "2": 0.5rem, "3": 0.75rem, "4": 1rem, "5": 1.5rem, "6": 3rem, "auto": auto) !default
12
12
 
13
13
  @each $property, $shortcut in $spacing-shortcuts
14
14
  @each $name, $value in $spacing-values
15
+ // All directions
16
+ .#{$shortcut}-#{$name}
17
+ #{$property}: $value !important
15
18
  // Cardinal directions
16
19
  @each $direction, $suffix in $spacing-directions
17
20
  .#{$shortcut}#{$suffix}-#{$name}
@@ -1,3 +1,5 @@
1
+ @import "../utilities/mixins"
2
+
1
3
  =typography-size($target:'')
2
4
  @each $size in $sizes
3
5
  $i: index($sizes, $size)
@@ -70,6 +72,9 @@ $alignments: ('centered': 'center', 'justified': 'justify', 'left': 'left', 'rig
70
72
 
71
73
  .is-italic
72
74
  font-style: italic !important
75
+
76
+ .is-underlined
77
+ text-decoration: underline !important
73
78
 
74
79
  .has-text-weight-light
75
80
  font-weight: $weight-light !important
@@ -1,4 +1,4 @@
1
-
1
+ @import "../utilities/mixins"
2
2
 
3
3
  $displays: 'block' 'flex' 'inline' 'inline-block' 'inline-flex'
4
4
 
@@ -1,5 +1,6 @@
1
+ /* Bulma Layout */
1
2
  @charset "utf-8"
2
3
 
3
- @import "hero.sass"
4
- @import "section.sass"
5
- @import "footer.sass"
4
+ @import "hero"
5
+ @import "section"
6
+ @import "footer"
@@ -1,3 +1,5 @@
1
+ @import "../utilities/derived-variables"
2
+
1
3
  $footer-background-color: $scheme-main-bis !default
2
4
  $footer-color: false !default
3
5
  $footer-padding: 3rem 1.5rem 6rem !default
@@ -1,7 +1,12 @@
1
+ @import "../utilities/mixins"
2
+
1
3
  $hero-body-padding: 3rem 1.5rem !default
4
+ $hero-body-padding-tablet: 3rem 3rem !default
2
5
  $hero-body-padding-small: 1.5rem !default
3
- $hero-body-padding-medium: 9rem 1.5rem !default
4
- $hero-body-padding-large: 18rem 1.5rem !default
6
+ $hero-body-padding-medium: 9rem 4.5rem !default
7
+ $hero-body-padding-large: 18rem 6rem !default
8
+
9
+ $hero-colors: $colors !default
5
10
 
6
11
  // Main container
7
12
  .hero
@@ -15,7 +20,7 @@ $hero-body-padding-large: 18rem 1.5rem !default
15
20
  ul
16
21
  border-bottom: none
17
22
  // Colors
18
- @each $name, $pair in $colors
23
+ @each $name, $pair in $hero-colors
19
24
  $color: nth($pair, 1)
20
25
  $color-invert: nth($pair, 2)
21
26
  &.is-#{$name}
@@ -51,6 +56,7 @@ $hero-body-padding-large: 18rem 1.5rem !default
51
56
  opacity: 1
52
57
  li
53
58
  &.is-active a
59
+ color: $color !important
54
60
  opacity: 1
55
61
  &.is-boxed,
56
62
  &.is-toggle
@@ -143,3 +149,5 @@ $hero-body-padding-large: 18rem 1.5rem !default
143
149
  flex-grow: 1
144
150
  flex-shrink: 0
145
151
  padding: $hero-body-padding
152
+ +tablet
153
+ padding: $hero-body-padding-tablet
@@ -1,11 +1,15 @@
1
+ @import "../utilities/mixins"
2
+
1
3
  $section-padding: 3rem 1.5rem !default
2
- $section-padding-medium: 9rem 1.5rem !default
3
- $section-padding-large: 18rem 1.5rem !default
4
+ $section-padding-desktop: 3rem 3rem !default
5
+ $section-padding-medium: 9rem 4.5rem !default
6
+ $section-padding-large: 18rem 6rem !default
4
7
 
5
8
  .section
6
9
  padding: $section-padding
7
10
  // Responsiveness
8
11
  +desktop
12
+ padding: $section-padding-desktop
9
13
  // Sizes
10
14
  &.is-medium
11
15
  padding: $section-padding-medium
@@ -1,8 +1,9 @@
1
+ /* Bulma Utilities */
1
2
  @charset "utf-8"
2
3
 
3
- @import "initial-variables.sass"
4
- @import "functions.sass"
5
- @import "derived-variables.scss"
6
- @import "animations.sass"
7
- @import "mixins.sass"
8
- @import "controls.sass"
4
+ @import "initial-variables"
5
+ @import "functions"
6
+ @import "derived-variables"
7
+ @import "mixins"
8
+ @import "controls"
9
+ @import "extends"
@@ -1,5 +1 @@
1
- @keyframes spinAround
2
- from
3
- transform: rotate(0deg)
4
- to
5
- transform: rotate(359deg)
1
+ @warn "The animations.sass file has MOVED. It is now in the /base folder. Please import sass/base/animations instead."
@@ -1,3 +1,5 @@
1
+ @import "derived-variables"
2
+
1
3
  $control-radius: $radius !default
2
4
  $control-radius-small: $radius-small !default
3
5
 
@@ -37,9 +39,6 @@ $control-padding-horizontal: calc(0.75em - #{$control-border-width}) !default
37
39
  fieldset[disabled] &
38
40
  cursor: not-allowed
39
41
 
40
- %control
41
- +control
42
-
43
42
  // The controls sizes use mixins so they can be used at different breakpoints
44
43
  =control-small
45
44
  border-radius: $control-radius-small
@@ -0,0 +1,114 @@
1
+ @import "initial-variables"
2
+ @import "functions"
3
+
4
+ $primary: $turquoise !default
5
+
6
+ $info: $cyan !default
7
+ $success: $green !default
8
+ $warning: $yellow !default
9
+ $danger: $red !default
10
+
11
+ $light: $white-ter !default
12
+ $dark: $grey-darker !default
13
+
14
+ // Invert colors
15
+
16
+ $orange-invert: findColorInvert($orange) !default
17
+ $yellow-invert: findColorInvert($yellow) !default
18
+ $green-invert: findColorInvert($green) !default
19
+ $turquoise-invert: findColorInvert($turquoise) !default
20
+ $cyan-invert: findColorInvert($cyan) !default
21
+ $blue-invert: findColorInvert($blue) !default
22
+ $purple-invert: findColorInvert($purple) !default
23
+ $red-invert: findColorInvert($red) !default
24
+
25
+ $primary-invert: findColorInvert($primary) !default
26
+ $primary-light: findLightColor($primary) !default
27
+ $primary-dark: findDarkColor($primary) !default
28
+ $info-invert: findColorInvert($info) !default
29
+ $info-light: findLightColor($info) !default
30
+ $info-dark: findDarkColor($info) !default
31
+ $success-invert: findColorInvert($success) !default
32
+ $success-light: findLightColor($success) !default
33
+ $success-dark: findDarkColor($success) !default
34
+ $warning-invert: findColorInvert($warning) !default
35
+ $warning-light: findLightColor($warning) !default
36
+ $warning-dark: findDarkColor($warning) !default
37
+ $danger-invert: findColorInvert($danger) !default
38
+ $danger-light: findLightColor($danger) !default
39
+ $danger-dark: findDarkColor($danger) !default
40
+ $light-invert: findColorInvert($light) !default
41
+ $dark-invert: findColorInvert($dark) !default
42
+
43
+ // General colors
44
+
45
+ $scheme-main: $white !default
46
+ $scheme-main-bis: $white-bis !default
47
+ $scheme-main-ter: $white-ter !default
48
+ $scheme-invert: $black !default
49
+ $scheme-invert-bis: $black-bis !default
50
+ $scheme-invert-ter: $black-ter !default
51
+
52
+ $background: $white-ter !default
53
+
54
+ $border: $grey-lighter !default
55
+ $border-hover: $grey-light !default
56
+ $border-light: $grey-lightest !default
57
+ $border-light-hover: $grey-light !default
58
+
59
+ // Text colors
60
+
61
+ $text: $grey-dark !default
62
+ $text-invert: findColorInvert($text) !default
63
+ $text-light: $grey !default
64
+ $text-strong: $grey-darker !default
65
+
66
+ // Code colors
67
+
68
+ $code: darken($red, 15%) !default
69
+ $code-background: $background !default
70
+
71
+ $pre: $text !default
72
+ $pre-background: $background !default
73
+
74
+ // Link colors
75
+
76
+ $link: $blue !default
77
+ $link-invert: findColorInvert($link) !default
78
+ $link-light: findLightColor($link) !default
79
+ $link-dark: findDarkColor($link) !default
80
+ $link-visited: $purple !default
81
+
82
+ $link-hover: $grey-darker !default
83
+ $link-hover-border: $grey-light !default
84
+
85
+ $link-focus: $grey-darker !default
86
+ $link-focus-border: $blue !default
87
+
88
+ $link-active: $grey-darker !default
89
+ $link-active-border: $grey-dark !default
90
+
91
+ // Typography
92
+
93
+ $family-primary: $family-sans-serif !default
94
+ $family-secondary: $family-sans-serif !default
95
+ $family-code: $family-monospace !default
96
+
97
+ $size-small: $size-7 !default
98
+ $size-normal: $size-6 !default
99
+ $size-medium: $size-5 !default
100
+ $size-large: $size-4 !default
101
+
102
+ // Effects
103
+
104
+ $shadow: 0 0.5em 1em -0.125em rgba($scheme-invert, 0.1), 0 0px 0 1px rgba($scheme-invert, 0.02) !default
105
+
106
+ // Lists and maps
107
+ $custom-colors: null !default
108
+ $custom-shades: null !default
109
+
110
+ $colors: mergeColorMaps(("white": ($white, $black), "black": ($black, $white), "light": ($light, $light-invert), "dark": ($dark, $dark-invert), "primary": ($primary, $primary-invert, $primary-light, $primary-dark), "link": ($link, $link-invert, $link-light, $link-dark), "info": ($info, $info-invert, $info-light, $info-dark), "success": ($success, $success-invert, $success-light, $success-dark), "warning": ($warning, $warning-invert, $warning-light, $warning-dark), "danger": ($danger, $danger-invert, $danger-light, $danger-dark)), $custom-colors) !default
111
+
112
+ $shades: mergeColorMaps(("black-bis": $black-bis, "black-ter": $black-ter, "grey-darker": $grey-darker, "grey-dark": $grey-dark, "grey": $grey, "grey-light": $grey-light, "grey-lighter": $grey-lighter, "white-ter": $white-ter, "white-bis": $white-bis), $custom-shades) !default
113
+
114
+ $sizes: $size-1 $size-2 $size-3 $size-4 $size-5 $size-6 $size-7 !default
@@ -0,0 +1,25 @@
1
+ @import "mixins"
2
+
3
+ %control
4
+ +control
5
+
6
+ %unselectable
7
+ +unselectable
8
+
9
+ %arrow
10
+ +arrow
11
+
12
+ %block
13
+ +block
14
+
15
+ %delete
16
+ +delete
17
+
18
+ %loader
19
+ +loader
20
+
21
+ %overlay
22
+ +overlay
23
+
24
+ %reset
25
+ +reset
@@ -58,7 +58,7 @@
58
58
  $value: $value * $number
59
59
  @else if $exp < 0
60
60
  @for $i from 1 through -$exp
61
- $value: $value / $number
61
+ $value: divide($value, $number)
62
62
  @return $value
63
63
 
64
64
  @function colorLuminance($color)
@@ -67,11 +67,11 @@
67
67
  $color-rgb: ('red': red($color),'green': green($color),'blue': blue($color))
68
68
  @each $name, $value in $color-rgb
69
69
  $adjusted: 0
70
- $value: $value / 255
70
+ $value: divide($value, 255)
71
71
  @if $value < 0.03928
72
- $value: $value / 12.92
72
+ $value: divide($value, 12.92)
73
73
  @else
74
- $value: ($value + .055) / 1.055
74
+ $value: divide(($value + .055), 1.055)
75
75
  $value: powerNumber($value, 2)
76
76
  $color-rgb: map-merge($color-rgb, ($name: $value))
77
77
  @return (map-get($color-rgb, 'red') * .2126) + (map-get($color-rgb, 'green') * .7152) + (map-get($color-rgb, 'blue') * .0722)
@@ -113,3 +113,24 @@
113
113
  @if type-of($color) != 'color'
114
114
  @return $color
115
115
  @return lighten($color, $amount)
116
+
117
+ // Custom divide function by @mdo from https://github.com/twbs/bootstrap/pull/34245
118
+ // Replaces old slash division deprecated in Dart Sass
119
+ @function divide($dividend, $divisor, $precision: 10)
120
+ $sign: if($dividend > 0 and $divisor > 0, 1, -1)
121
+ $dividend: abs($dividend)
122
+ $divisor: abs($divisor)
123
+ $quotient: 0
124
+ $remainder: $dividend
125
+ @if $dividend == 0
126
+ @return 0
127
+ @if $divisor == 0
128
+ @error "Cannot divide by 0"
129
+ @if $divisor == 1
130
+ @return $dividend
131
+ @while $remainder >= $divisor
132
+ $quotient: $quotient + 1
133
+ $remainder: $remainder - $divisor
134
+ @if $remainder > 0 and $precision > 0
135
+ $remainder: divide($remainder * 10, $divisor, $precision - 1) * .1
136
+ @return ($quotient + $remainder) * $sign
@@ -16,11 +16,11 @@ $white-bis: hsl(0, 0%, 98%) !default
16
16
  $white: hsl(0, 0%, 100%) !default
17
17
 
18
18
  $orange: hsl(14, 100%, 53%) !default
19
- $yellow: hsl(48, 100%, 67%) !default
20
- $green: hsl(141, 53%, 53%) !default
19
+ $yellow: hsl(44, 100%, 77%) !default
20
+ $green: hsl(153, 53%, 53%) !default
21
21
  $turquoise: hsl(171, 100%, 41%) !default
22
- $cyan: hsl(204, 71%, 53%) !default
23
- $blue: hsl(217, 71%, 53%) !default
22
+ $cyan: hsl(207, 61%, 53%) !default
23
+ $blue: hsl(229, 53%, 53%) !default
24
24
  $purple: hsl(271, 100%, 71%) !default
25
25
  $red: hsl(348, 86%, 61%) !default
26
26
 
@@ -69,7 +69,7 @@ $easing: ease-out !default
69
69
  $radius-small: 2px !default
70
70
  $radius: 4px !default
71
71
  $radius-large: 6px !default
72
- $radius-rounded: 290486px !default
72
+ $radius-rounded: 9999px !default
73
73
  $speed: 86ms !default
74
74
 
75
75
  // Flags
@@ -1,4 +1,4 @@
1
- @import "initial-variables"
1
+ @import "derived-variables"
2
2
 
3
3
  =clearfix
4
4
  &::after
@@ -9,11 +9,11 @@
9
9
  =center($width, $height: 0)
10
10
  position: absolute
11
11
  @if $height != 0
12
- left: calc(50% - (#{$width} / 2))
13
- top: calc(50% - (#{$height} / 2))
12
+ left: calc(50% - (#{$width} * 0.5))
13
+ top: calc(50% - (#{$height} * 0.5))
14
14
  @else
15
- left: calc(50% - (#{$width} / 2))
16
- top: calc(50% - (#{$width} / 2))
15
+ left: calc(50% - (#{$width} * 0.5))
16
+ top: calc(50% - (#{$width} * 0.5))
17
17
 
18
18
  =fa($size, $dimensions)
19
19
  display: inline-block
@@ -68,6 +68,18 @@
68
68
  &:#{$placeholder}-placeholder
69
69
  @content
70
70
 
71
+ =reset
72
+ -moz-appearance: none
73
+ -webkit-appearance: none
74
+ appearance: none
75
+ background: none
76
+ border: none
77
+ color: currentColor
78
+ font-family: inherit
79
+ font-size: 1em
80
+ margin: 0
81
+ padding: 0
82
+
71
83
  // Responsiveness
72
84
 
73
85
  =from($device)
@@ -161,9 +173,6 @@
161
173
  -ms-user-select: none
162
174
  user-select: none
163
175
 
164
- %unselectable
165
- +unselectable
166
-
167
176
  =arrow($color: transparent)
168
177
  border: 3px solid $color
169
178
  border-radius: 2px
@@ -180,18 +189,12 @@
180
189
  transform-origin: center
181
190
  width: 0.625em
182
191
 
183
- %arrow
184
- +arrow
185
-
186
192
  =block($spacing: $block-spacing)
187
193
  &:not(:last-child)
188
194
  margin-bottom: $spacing
189
195
 
190
- %block
191
- +block
192
-
193
196
  =delete
194
- @extend %unselectable
197
+ +unselectable
195
198
  -moz-appearance: none
196
199
  -webkit-appearance: none
197
200
  background-color: bulmaRgba($scheme-invert, 0.2)
@@ -256,9 +259,6 @@
256
259
  min-width: 32px
257
260
  width: 32px
258
261
 
259
- %delete
260
- +delete
261
-
262
262
  =loader
263
263
  animation: spinAround 500ms infinite linear
264
264
  border: 2px solid $grey-lighter
@@ -271,9 +271,6 @@
271
271
  position: relative
272
272
  width: 1em
273
273
 
274
- %loader
275
- +loader
276
-
277
274
  =overlay($offset: 0)
278
275
  bottom: $offset
279
276
  left: $offset
@@ -281,5 +278,3 @@
281
278
  right: $offset
282
279
  top: $offset
283
280
 
284
- %overlay
285
- +overlay
data/bulma-rails.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |gem|
4
4
  gem.name = 'bulma-rails'
5
- gem.version = '0.9.0'
5
+ gem.version = '0.9.3'
6
6
  gem.authors = ["Joshua Jansen"]
7
7
  gem.email = ["joshuajansen88@gmail.com"]
8
8
  gem.description = %q{A modern CSS framework based on Flexbox}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bulma-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.9.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joshua Jansen
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-22 00:00:00.000000000 Z
11
+ date: 2022-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sassc
@@ -35,6 +35,7 @@ files:
35
35
  - README.md
36
36
  - app/assets/stylesheets/bulma.sass
37
37
  - app/assets/stylesheets/sass/base/_all.sass
38
+ - app/assets/stylesheets/sass/base/animations.sass
38
39
  - app/assets/stylesheets/sass/base/generic.sass
39
40
  - app/assets/stylesheets/sass/base/helpers.sass
40
41
  - app/assets/stylesheets/sass/base/minireset.sass
@@ -77,6 +78,7 @@ files:
77
78
  - app/assets/stylesheets/sass/grid/tiles.sass
78
79
  - app/assets/stylesheets/sass/helpers/_all.sass
79
80
  - app/assets/stylesheets/sass/helpers/color.sass
81
+ - app/assets/stylesheets/sass/helpers/flexbox.sass
80
82
  - app/assets/stylesheets/sass/helpers/float.sass
81
83
  - app/assets/stylesheets/sass/helpers/other.sass
82
84
  - app/assets/stylesheets/sass/helpers/overflow.sass
@@ -91,7 +93,8 @@ files:
91
93
  - app/assets/stylesheets/sass/utilities/_all.sass
92
94
  - app/assets/stylesheets/sass/utilities/animations.sass
93
95
  - app/assets/stylesheets/sass/utilities/controls.sass
94
- - app/assets/stylesheets/sass/utilities/derived-variables.scss
96
+ - app/assets/stylesheets/sass/utilities/derived-variables.sass
97
+ - app/assets/stylesheets/sass/utilities/extends.sass
95
98
  - app/assets/stylesheets/sass/utilities/functions.sass
96
99
  - app/assets/stylesheets/sass/utilities/initial-variables.sass
97
100
  - app/assets/stylesheets/sass/utilities/mixins.sass
@@ -101,7 +104,7 @@ homepage: https://github.com/joshuajansen/bulma-rails
101
104
  licenses:
102
105
  - MIT
103
106
  metadata: {}
104
- post_install_message:
107
+ post_install_message:
105
108
  rdoc_options: []
106
109
  require_paths:
107
110
  - lib
@@ -116,8 +119,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
116
119
  - !ruby/object:Gem::Version
117
120
  version: '0'
118
121
  requirements: []
119
- rubygems_version: 3.1.2
120
- signing_key:
122
+ rubygems_version: 3.3.3
123
+ signing_key:
121
124
  specification_version: 4
122
125
  summary: This gem adds the bulma.io assets to your asset pipeline so you can import
123
126
  them in your Rails project.