bulma-clean-theme 1.0.3 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/_includes/cookie-banner.html +3 -3
  3. data/_includes/tiktok.html +6 -0
  4. data/_layouts/product-category.html +5 -1
  5. data/node_modules/.package-lock.json +3 -3
  6. data/node_modules/bulma/README.md +3 -1
  7. data/node_modules/bulma/bulma.scss +1 -1
  8. data/node_modules/bulma/css/bulma.css +1897 -2791
  9. data/node_modules/bulma/css/bulma.css.map +1 -1
  10. data/node_modules/bulma/css/bulma.min.css +2 -2
  11. data/node_modules/bulma/css/versions/bulma-no-dark-mode.css +1887 -2781
  12. data/node_modules/bulma/css/versions/bulma-no-dark-mode.css.map +1 -1
  13. data/node_modules/bulma/css/versions/bulma-no-dark-mode.min.css +2 -2
  14. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.css +612 -96
  15. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.css.map +1 -1
  16. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.min.css +2 -2
  17. data/node_modules/bulma/css/versions/bulma-no-helpers.css +612 -96
  18. data/node_modules/bulma/css/versions/bulma-no-helpers.css.map +1 -1
  19. data/node_modules/bulma/css/versions/bulma-no-helpers.min.css +2 -2
  20. data/node_modules/bulma/css/versions/bulma-prefixed.min.css +1897 -2791
  21. data/node_modules/bulma/css/versions/bulma-prefixed.min.css.map +1 -1
  22. data/node_modules/bulma/css/versions/bulma-prefixed.min.min.css +2 -2
  23. data/node_modules/bulma/package.json +6 -5
  24. data/node_modules/bulma/sass/components/navbar.scss +41 -30
  25. data/node_modules/bulma/sass/components/panel.scss +2 -2
  26. data/node_modules/bulma/sass/elements/content.scss +8 -2
  27. data/node_modules/bulma/sass/form/checkbox-radio.scss +7 -3
  28. data/node_modules/bulma/sass/form/input-textarea.scss +0 -10
  29. data/node_modules/bulma/sass/form/shared.scss +4 -0
  30. data/node_modules/bulma/sass/form/tools.scss +23 -12
  31. data/node_modules/bulma/sass/grid/columns.scss +109 -25
  32. data/node_modules/bulma/sass/grid/grid.scss +1 -1
  33. data/node_modules/bulma/sass/helpers/color.scss +166 -186
  34. data/node_modules/bulma/sass/layout/container.scss +16 -8
  35. data/node_modules/bulma/sass/layout/section.scss +4 -0
  36. data/node_modules/bulma/sass/utilities/css-variables.scss +3 -2
  37. data/node_modules/bulma/sass/utilities/functions.scss +2 -2
  38. data/node_modules/bulma/sass/utilities/initial-variables.scss +4 -4
  39. data/node_modules/bulma/versions/bulma-no-dark-mode.scss +1 -1
  40. data/node_modules/bulma/versions/bulma-no-helpers-prefixed.scss +1 -1
  41. data/node_modules/bulma/versions/bulma-no-helpers.scss +1 -1
  42. data/node_modules/bulma/versions/bulma-prefixed.scss +1 -1
  43. data/package-lock.json +6 -6
  44. metadata +3 -3
  45. data/node_modules/bulma/sass/grid/columns-v2.scss +0 -957
@@ -34,306 +34,272 @@ $digits: (
34
34
  $background: hsl(
35
35
  #{cv.getVar($name, "", "-h")},
36
36
  #{cv.getVar($name, "", "-s")},
37
- calc(#{cv.getVar("background-l")} + #{cv.getVar("background-l-delta")})
37
+ #{cv.getVar($name, "", "-l")}
38
38
  );
39
39
 
40
40
  $color: hsl(
41
41
  #{cv.getVar($name, "", "-h")},
42
42
  #{cv.getVar($name, "", "-s")},
43
- calc(#{cv.getVar("color-l")} + #{cv.getVar("color-l-delta")})
43
+ #{cv.getVar($name, "", "-l")}
44
44
  );
45
45
 
46
- [class*="#{iv.$helpers-prefix}color-#{$name}"],
47
- [class*="#{iv.$helpers-has-prefix}text-#{$name}"] {
48
- @include cv.register-vars(
49
- (
50
- "color-l": #{cv.getVar($name, "", "-l")},
51
- "color-l-delta": 0%,
52
- )
53
- );
46
+ .#{iv.$helpers-has-prefix}text-#{$name} {
54
47
  color: $color !important;
55
48
  }
56
49
 
57
- [class*="#{iv.$helpers-prefix}background-#{$name}"],
58
- [class*="#{iv.$helpers-has-prefix}background-#{$name}"] {
59
- @include cv.register-vars(
60
- (
61
- "background-l": #{cv.getVar($name, "", "-l")},
62
- "background-l-delta": 0%,
63
- )
64
- );
50
+ .#{iv.$helpers-has-prefix}background-#{$name} {
65
51
  background-color: $background !important;
66
52
  }
67
53
 
68
54
  // Invert
69
- .#{iv.$helpers-prefix}color-#{$name}-invert,
70
55
  .#{iv.$helpers-has-prefix}text-#{$name}-invert {
71
- @include cv.register-vars(
72
- (
73
- "color-l": #{cv.getVar($name, "", "-invert-l")},
74
- )
75
- );
56
+ color: hsl(
57
+ #{cv.getVar($name, "", "-h")},
58
+ #{cv.getVar($name, "", "-s")},
59
+ #{cv.getVar($name, "", "-invert-l")}
60
+ ) !important;
76
61
  }
77
62
 
78
- .#{iv.$helpers-prefix}background-#{$name}-invert,
79
63
  .#{iv.$helpers-has-prefix}background-#{$name}-invert {
80
- @include cv.register-vars(
81
- (
82
- "background-l": #{cv.getVar($name, "", "-invert-l")},
83
- )
84
- );
64
+ background-color: hsl(
65
+ #{cv.getVar($name, "", "-h")},
66
+ #{cv.getVar($name, "", "-s")},
67
+ #{cv.getVar($name, "", "-invert-l")}
68
+ ) !important;
85
69
  }
86
70
 
87
71
  // On Scheme
88
- .#{iv.$helpers-prefix}color-#{$name}-on-scheme,
89
72
  .#{iv.$helpers-has-prefix}text-#{$name}-on-scheme {
90
- @include cv.register-vars(
91
- (
92
- "color-l": #{cv.getVar($name, "", "-on-scheme-l")},
93
- )
94
- );
73
+ color: hsl(
74
+ #{cv.getVar($name, "", "-h")},
75
+ #{cv.getVar($name, "", "-s")},
76
+ #{cv.getVar($name, "", "-on-scheme-l")}
77
+ ) !important;
95
78
  }
96
79
 
97
- .#{iv.$helpers-prefix}background-#{$name}-on-scheme,
98
80
  .#{iv.$helpers-has-prefix}background-#{$name}-on-scheme {
99
- @include cv.register-vars(
100
- (
101
- "background-l": #{cv.getVar($name, "", "-on-scheme-l")},
102
- )
103
- );
81
+ background-color: hsl(
82
+ #{cv.getVar($name, "", "-h")},
83
+ #{cv.getVar($name, "", "-s")},
84
+ #{cv.getVar($name, "", "-on-scheme-l")}
85
+ ) !important;
104
86
  }
105
87
 
106
88
  // Light
107
- .#{iv.$helpers-prefix}color-#{$name}-light,
108
89
  .#{iv.$helpers-has-prefix}text-#{$name}-light {
109
- @include cv.register-vars(
110
- (
111
- "color-l": #{cv.getVar($name, "", "-light-l")},
112
- )
113
- );
90
+ color: hsl(
91
+ #{cv.getVar($name, "", "-h")},
92
+ #{cv.getVar($name, "", "-s")},
93
+ #{cv.getVar($name, "", "-light-l")}
94
+ ) !important;
114
95
  }
115
96
 
116
- .#{iv.$helpers-prefix}background-#{$name}-light,
117
97
  .#{iv.$helpers-has-prefix}background-#{$name}-light {
118
- @include cv.register-vars(
119
- (
120
- "background-l": #{cv.getVar($name, "", "-light-l")},
121
- )
122
- );
98
+ background-color: hsl(
99
+ #{cv.getVar($name, "", "-h")},
100
+ #{cv.getVar($name, "", "-s")},
101
+ #{cv.getVar($name, "", "-light-l")}
102
+ ) !important;
123
103
  }
124
104
 
125
- .#{iv.$helpers-prefix}color-#{$name}-light-invert,
126
105
  .#{iv.$helpers-has-prefix}text-#{$name}-light-invert {
127
- @include cv.register-vars(
128
- (
129
- "color-l": #{cv.getVar($name, "", "-light-invert-l")},
130
- )
131
- );
106
+ color: hsl(
107
+ #{cv.getVar($name, "", "-h")},
108
+ #{cv.getVar($name, "", "-s")},
109
+ #{cv.getVar($name, "", "-light-invert-l")}
110
+ ) !important;
132
111
  }
133
112
 
134
- .#{iv.$helpers-prefix}background-#{$name}-light-invert,
135
113
  .#{iv.$helpers-has-prefix}background-#{$name}-light-invert {
136
- @include cv.register-vars(
137
- (
138
- "background-l": #{cv.getVar($name, "", "-light-invert-l")},
139
- )
140
- );
114
+ background-color: hsl(
115
+ #{cv.getVar($name, "", "-h")},
116
+ #{cv.getVar($name, "", "-s")},
117
+ #{cv.getVar($name, "", "-light-invert-l")}
118
+ ) !important;
141
119
  }
142
120
 
143
121
  // Dark
144
- .#{iv.$helpers-prefix}color-#{$name}-dark,
145
122
  .#{iv.$helpers-has-prefix}text-#{$name}-dark {
146
- @include cv.register-vars(
147
- (
148
- "color-l": #{cv.getVar($name, "", "-dark-l")},
149
- )
150
- );
123
+ color: hsl(
124
+ #{cv.getVar($name, "", "-h")},
125
+ #{cv.getVar($name, "", "-s")},
126
+ #{cv.getVar($name, "", "-dark-l")}
127
+ ) !important;
151
128
  }
152
129
 
153
- .#{iv.$helpers-prefix}background-#{$name}-dark,
154
130
  .#{iv.$helpers-has-prefix}background-#{$name}-dark {
155
- @include cv.register-vars(
156
- (
157
- "background-l": #{cv.getVar($name, "", "-dark-l")},
158
- )
159
- );
131
+ background-color: hsl(
132
+ #{cv.getVar($name, "", "-h")},
133
+ #{cv.getVar($name, "", "-s")},
134
+ #{cv.getVar($name, "", "-dark-l")}
135
+ ) !important;
160
136
  }
161
137
 
162
- .#{iv.$helpers-prefix}color-#{$name}-dark-invert,
163
138
  .#{iv.$helpers-has-prefix}text-#{$name}-dark-invert {
164
- @include cv.register-vars(
165
- (
166
- "color-l": #{cv.getVar($name, "", "-dark-invert-l")},
167
- )
168
- );
139
+ color: hsl(
140
+ #{cv.getVar($name, "", "-h")},
141
+ #{cv.getVar($name, "", "-s")},
142
+ #{cv.getVar($name, "", "-dark-invert-l")}
143
+ ) !important;
169
144
  }
170
145
 
171
- .#{iv.$helpers-prefix}background-#{$name}-dark-invert,
172
146
  .#{iv.$helpers-has-prefix}background-#{$name}-dark-invert {
173
- @include cv.register-vars(
174
- (
175
- "background-l": #{cv.getVar($name, "", "-dark-invert-l")},
176
- )
177
- );
147
+ background-color: hsl(
148
+ #{cv.getVar($name, "", "-h")},
149
+ #{cv.getVar($name, "", "-s")},
150
+ #{cv.getVar($name, "", "-dark-invert-l")}
151
+ ) !important;
178
152
  }
179
153
 
180
154
  // Soft/Bold
181
- .#{iv.$helpers-prefix}color-#{$name}-soft,
182
155
  .#{iv.$helpers-has-prefix}text-#{$name}-soft {
183
- @include cv.register-vars(
184
- (
185
- "color-l": #{cv.getVar("soft-l")},
186
- )
187
- );
156
+ color: hsl(
157
+ #{cv.getVar($name, "", "-h")},
158
+ #{cv.getVar($name, "", "-s")},
159
+ #{cv.getVar("soft-l")}
160
+ ) !important;
188
161
  }
189
162
 
190
- .#{iv.$helpers-prefix}background-#{$name}-soft,
191
163
  .#{iv.$helpers-has-prefix}background-#{$name}-soft {
192
- @include cv.register-vars(
193
- (
194
- "background-l": #{cv.getVar("soft-l")},
195
- )
196
- );
164
+ background-color: hsl(
165
+ #{cv.getVar($name, "", "-h")},
166
+ #{cv.getVar($name, "", "-s")},
167
+ #{cv.getVar("soft-l")}
168
+ ) !important;
197
169
  }
198
170
 
199
- .#{iv.$helpers-prefix}color-#{$name}-bold,
200
171
  .#{iv.$helpers-has-prefix}text-#{$name}-bold {
201
- @include cv.register-vars(
202
- (
203
- "color-l": #{cv.getVar("bold-l")},
204
- )
205
- );
172
+ color: hsl(
173
+ #{cv.getVar($name, "", "-h")},
174
+ #{cv.getVar($name, "", "-s")},
175
+ #{cv.getVar("bold-l")}
176
+ ) !important;
206
177
  }
207
178
 
208
- .#{iv.$helpers-prefix}background-#{$name}-bold,
209
179
  .#{iv.$helpers-has-prefix}background-#{$name}-bold {
210
- @include cv.register-vars(
211
- (
212
- "background-l": #{cv.getVar("bold-l")},
213
- )
214
- );
180
+ background-color: hsl(
181
+ #{cv.getVar($name, "", "-h")},
182
+ #{cv.getVar($name, "", "-s")},
183
+ #{cv.getVar("bold-l")}
184
+ ) !important;
215
185
  }
216
186
 
217
- .#{iv.$helpers-prefix}color-#{$name}-soft-invert,
218
187
  .#{iv.$helpers-has-prefix}text-#{$name}-soft-invert {
219
- @include cv.register-vars(
220
- (
221
- "color-l": #{cv.getVar("soft-invert-l")},
222
- )
223
- );
188
+ color: hsl(
189
+ #{cv.getVar($name, "", "-h")},
190
+ #{cv.getVar($name, "", "-s")},
191
+ #{cv.getVar("soft-invert-l")}
192
+ ) !important;
224
193
  }
225
194
 
226
- .#{iv.$helpers-prefix}background-#{$name}-soft-invert,
227
195
  .#{iv.$helpers-has-prefix}background-#{$name}-soft-invert {
228
- @include cv.register-vars(
229
- (
230
- "background-l": #{cv.getVar("soft-invert-l")},
231
- )
232
- );
196
+ background-color: hsl(
197
+ #{cv.getVar($name, "", "-h")},
198
+ #{cv.getVar($name, "", "-s")},
199
+ #{cv.getVar("soft-invert-l")}
200
+ ) !important;
233
201
  }
234
202
 
235
- .#{iv.$helpers-prefix}color-#{$name}-bold-invert,
236
203
  .#{iv.$helpers-has-prefix}text-#{$name}-bold-invert {
237
- @include cv.register-vars(
238
- (
239
- "color-l": #{cv.getVar("bold-invert-l")},
240
- )
241
- );
204
+ color: hsl(
205
+ #{cv.getVar($name, "", "-h")},
206
+ #{cv.getVar($name, "", "-s")},
207
+ #{cv.getVar("bold-invert-l")}
208
+ ) !important;
242
209
  }
243
210
 
244
- .#{iv.$helpers-prefix}background-#{$name}-bold-invert,
245
211
  .#{iv.$helpers-has-prefix}background-#{$name}-bold-invert {
246
- @include cv.register-vars(
247
- (
248
- "background-l": #{cv.getVar("bold-invert-l")},
249
- )
250
- );
212
+ background-color: hsl(
213
+ #{cv.getVar($name, "", "-h")},
214
+ #{cv.getVar($name, "", "-s")},
215
+ #{cv.getVar("bold-invert-l")}
216
+ ) !important;
251
217
  }
252
218
 
253
219
  @each $digit in $digits {
254
- .#{iv.$helpers-prefix}color-#{$name}-#{$digit},
255
220
  .#{iv.$helpers-has-prefix}text-#{$name}-#{$digit} {
256
- @include cv.register-vars(
257
- (
258
- "color-l": #{cv.getVar($name, "", "-#{$digit}-l")},
259
- )
260
- );
221
+ color: hsl(
222
+ #{cv.getVar($name, "", "-h")},
223
+ #{cv.getVar($name, "", "-s")},
224
+ #{cv.getVar($name, "", "-#{$digit}-l")}
225
+ ) !important;
261
226
  }
262
227
 
263
- .#{iv.$helpers-prefix}background-#{$name}-#{$digit},
264
228
  .#{iv.$helpers-has-prefix}background-#{$name}-#{$digit} {
265
- @include cv.register-vars(
266
- (
267
- "background-l": #{cv.getVar($name, "", "-#{$digit}-l")},
268
- )
269
- );
229
+ background-color: hsl(
230
+ #{cv.getVar($name, "", "-h")},
231
+ #{cv.getVar($name, "", "-s")},
232
+ #{cv.getVar($name, "", "-#{$digit}-l")}
233
+ ) !important;
270
234
  }
271
235
 
272
- .#{iv.$helpers-prefix}color-#{$name}-#{$digit}-invert,
273
236
  .#{iv.$helpers-has-prefix}text-#{$name}-#{$digit}-invert {
274
- @include cv.register-vars(
275
- (
276
- "color-l": #{cv.getVar($name, "", "-#{$digit}-invert-l")},
277
- )
278
- );
237
+ color: hsl(
238
+ #{cv.getVar($name, "", "-h")},
239
+ #{cv.getVar($name, "", "-s")},
240
+ #{cv.getVar($name, "", "-#{$digit}-invert-l")}
241
+ ) !important;
279
242
  }
280
243
 
281
- .#{iv.$helpers-prefix}background-#{$name}-#{$digit}-invert,
282
244
  .#{iv.$helpers-has-prefix}background-#{$name}-#{$digit}-invert {
283
- @include cv.register-vars(
284
- (
285
- "background-l": #{cv.getVar($name, "", "-#{$digit}-invert-l")},
286
- )
287
- );
245
+ background-color: hsl(
246
+ #{cv.getVar($name, "", "-h")},
247
+ #{cv.getVar($name, "", "-s")},
248
+ #{cv.getVar($name, "", "-#{$digit}-invert-l")}
249
+ ) !important;
288
250
  }
289
251
  }
290
252
 
291
253
  // Hover
292
- a.#{iv.$helpers-prefix}color-#{$name},
293
- button.#{iv.$helpers-prefix}color-#{$name},
294
- #{iv.$helpers-prefix}color-#{$name}.is-hoverable,
295
254
  a.#{iv.$helpers-has-prefix}text-#{$name},
296
255
  button.#{iv.$helpers-has-prefix}text-#{$name},
297
256
  #{iv.$helpers-has-prefix}text-#{$name}.is-hoverable {
298
257
  &:hover,
299
258
  &:focus-visible {
300
- @include cv.register-vars(
301
- (
302
- "color-l-delta": #{cv.getVar("hover-color-l-delta")},
259
+ color: hsl(
260
+ #{cv.getVar($name, "", "-h")},
261
+ #{cv.getVar($name, "", "-s")},
262
+ calc(
263
+ #{cv.getVar($name, "", "-l")} + #{cv.getVar("hover-color-l-delta")}
303
264
  )
304
- );
265
+ ) !important;
305
266
  }
306
267
 
307
268
  &:active {
308
- @include cv.register-vars(
309
- (
310
- "color-l-delta": #{cv.getVar("active-color-l-delta")},
269
+ color: hsl(
270
+ #{cv.getVar($name, "", "-h")},
271
+ #{cv.getVar($name, "", "-s")},
272
+ calc(
273
+ #{cv.getVar($name, "", "-l")} + #{cv.getVar("active-color-l-delta")}
311
274
  )
312
- );
275
+ ) !important;
313
276
  }
314
277
  }
315
278
 
316
- a.#{iv.$helpers-prefix}background-#{$name},
317
- button.#{iv.$helpers-prefix}background-#{$name},
318
- #{iv.$helpers-prefix}background-#{$name}.is-hoverable,
319
279
  a.#{iv.$helpers-has-prefix}background-#{$name},
320
280
  button.#{iv.$helpers-has-prefix}background-#{$name},
321
281
  #{iv.$helpers-has-prefix}background-#{$name}.is-hoverable {
322
282
  &:hover,
323
283
  &:focus-visible {
324
- @include cv.register-vars(
325
- (
326
- "background-l-delta": #{cv.getVar("hover-background-l-delta")},
284
+ background-color: hsl(
285
+ #{cv.getVar($name, "", "-h")},
286
+ #{cv.getVar($name, "", "-s")},
287
+ calc(
288
+ #{cv.getVar($name, "", "-l")} +
289
+ #{cv.getVar("hover-background-l-delta")}
327
290
  )
328
- );
291
+ ) !important;
329
292
  }
330
293
 
331
294
  &:active {
332
- @include cv.register-vars(
333
- (
334
- "background-l-delta": #{cv.getVar("active-background-l-delta")},
295
+ background-color: hsl(
296
+ #{cv.getVar($name, "", "-h")},
297
+ #{cv.getVar($name, "", "-s")},
298
+ calc(
299
+ #{cv.getVar($name, "", "-l")} +
300
+ #{cv.getVar("active-background-l-delta")}
335
301
  )
336
- );
302
+ ) !important;
337
303
  }
338
304
  }
339
305
 
@@ -352,13 +318,27 @@ $digits: (
352
318
  }
353
319
 
354
320
  @each $name, $shade in dv.$shades {
355
- .#{iv.$helpers-prefix}color-#{$name},
356
321
  .#{iv.$helpers-has-prefix}text-#{$name} {
357
322
  color: $shade !important;
358
323
  }
359
324
 
360
- .#{iv.$helpers-prefix}background-#{$name},
361
325
  .#{iv.$helpers-has-prefix}background-#{$name} {
362
326
  background-color: $shade !important;
363
327
  }
364
328
  }
329
+
330
+ .#{iv.$helpers-has-prefix}text-current {
331
+ color: currentColor !important;
332
+ }
333
+
334
+ .#{iv.$helpers-has-prefix}text-inherit {
335
+ color: inherit !important;
336
+ }
337
+
338
+ .#{iv.$helpers-has-prefix}background-current {
339
+ background-color: currentColor !important;
340
+ }
341
+
342
+ .#{iv.$helpers-has-prefix}background-inherit {
343
+ background-color: inherit !important;
344
+ }
@@ -17,34 +17,42 @@ $container-max-width: iv.$fullhd !default;
17
17
  width: 100%;
18
18
  }
19
19
 
20
+ &.#{iv.$class-prefix}is-max-tablet {
21
+ max-width: iv.$tablet - $container-offset;
22
+ }
23
+
20
24
  @include mx.desktop {
21
25
  max-width: iv.$desktop - $container-offset;
22
26
  }
23
27
 
24
28
  @include mx.until-widescreen {
25
- &.#{iv.$class-prefix}is-widescreen:not(.#{iv.$class-prefix}is-max-desktop) {
29
+ &.#{iv.$class-prefix}is-widescreen:not(
30
+ .#{iv.$class-prefix}is-max-tablet
31
+ ):not(.#{iv.$class-prefix}is-max-desktop) {
26
32
  max-width: min(iv.$widescreen, $container-max-width) - $container-offset;
27
33
  }
28
34
  }
29
35
 
30
36
  @include mx.until-fullhd {
31
- &.#{iv.$class-prefix}is-fullhd:not(.#{iv.$class-prefix}is-max-desktop):not(
32
- .#{iv.$class-prefix}is-max-widescreen
33
- ) {
37
+ &.#{iv.$class-prefix}is-fullhd:not(.#{iv.$class-prefix}is-max-tablet):not(
38
+ .#{iv.$class-prefix}is-max-desktop
39
+ ):not(.#{iv.$class-prefix}is-max-widescreen) {
34
40
  max-width: min(iv.$fullhd, $container-max-width) - $container-offset;
35
41
  }
36
42
  }
37
43
 
38
44
  @include mx.widescreen {
39
- &:not(.#{iv.$class-prefix}is-max-desktop) {
45
+ &:not(.#{iv.$class-prefix}is-max-tablet):not(
46
+ .#{iv.$class-prefix}is-max-desktop
47
+ ) {
40
48
  max-width: min(iv.$widescreen, $container-max-width) - $container-offset;
41
49
  }
42
50
  }
43
51
 
44
52
  @include mx.fullhd {
45
- &:not(.#{iv.$class-prefix}is-max-desktop):not(
46
- .#{iv.$class-prefix}is-max-widescreen
47
- ) {
53
+ &:not(.#{iv.$class-prefix}is-max-tablet):not(
54
+ .#{iv.$class-prefix}is-max-desktop
55
+ ):not(.#{iv.$class-prefix}is-max-widescreen) {
48
56
  max-width: min(iv.$fullhd, $container-max-width) - $container-offset;
49
57
  }
50
58
  }
@@ -31,4 +31,8 @@ $section-padding-large: 18rem 6rem !default;
31
31
  padding: cv.getVar("section-padding-large");
32
32
  }
33
33
  }
34
+
35
+ &.#{iv.$class-prefix}is-fullheight {
36
+ min-height: 100vh;
37
+ }
34
38
  }
@@ -211,8 +211,9 @@
211
211
  }
212
212
  }
213
213
 
214
- $shades: map.set($shades, "100", 100%);
215
- @include register-var($name, 100%, "", "-100-l");
214
+ $l-100: math.min($l-0 + 100%, 100%);
215
+ $shades: map.set($shades, "100", $l-100);
216
+ @include register-var($name, $l-100, "", "-100-l");
216
217
 
217
218
  // === STEP 3 ===
218
219
  // Find accessible color combinations
@@ -184,10 +184,10 @@
184
184
 
185
185
  @function bulmaColorBrightness($n) {
186
186
  $color-brightness: round(
187
- (red($n) * 299) + (green($n) * 587) + (blue($n) * 114) / 1000
187
+ math.div((red($n) * 299) + (green($n) * 587) + (blue($n) * 114), 1000)
188
188
  );
189
189
  $light-color: round(
190
- (red(#ffffff) * 299) + (green(#ffffff) * 587) + (blue(#ffffff) * 114) / 1000
190
+ math.div((red(#ffffff) * 299) + (green(#ffffff) * 587) + (blue(#ffffff) * 114), 1000)
191
191
  );
192
192
 
193
193
  @if abs($color-brightness) < math.div($light-color, 2) {
@@ -1,9 +1,9 @@
1
1
  // Scheme Hue and Saturation
2
2
 
3
- $scheme-h: 221;
4
- $scheme-s: 14%;
5
- $dark-l: 20%;
6
- $light-l: 90%;
3
+ $scheme-h: 221 !default;
4
+ $scheme-s: 14% !default;
5
+ $dark-l: 20% !default;
6
+ $light-l: 90% !default;
7
7
 
8
8
  // Colors
9
9
 
@@ -1,6 +1,6 @@
1
1
  @charset "utf-8";
2
2
 
3
- /*! bulma.io v1.0.1 | MIT License | github.com/jgthms/bulma */
3
+ /*! bulma.io v1.0.2 | MIT License | github.com/jgthms/bulma */
4
4
  @forward "../sass/utilities";
5
5
  @forward "../sass/base";
6
6
  @forward "../sass/elements";
@@ -1,6 +1,6 @@
1
1
  @charset "utf-8";
2
2
 
3
- /*! bulma.io v1.0.1 | MIT License | github.com/jgthms/bulma */
3
+ /*! bulma.io v1.0.2 | MIT License | github.com/jgthms/bulma */
4
4
  @use "../sass/utilities" with (
5
5
  $class-prefix: "bulma-"
6
6
  );
@@ -1,6 +1,6 @@
1
1
  @charset "utf-8";
2
2
 
3
- /*! bulma.io v1.0.1 | MIT License | github.com/jgthms/bulma */
3
+ /*! bulma.io v1.0.2 | MIT License | github.com/jgthms/bulma */
4
4
  @forward "../sass/utilities";
5
5
  @forward "../sass/base";
6
6
  @forward "../sass/elements";
@@ -1,6 +1,6 @@
1
1
  @charset "utf-8";
2
2
 
3
- /*! bulma.io v1.0.1 | MIT License | github.com/jgthms/bulma */
3
+ /*! bulma.io v1.0.2 | MIT License | github.com/jgthms/bulma */
4
4
  @use "../sass" with (
5
5
  $class-prefix: "bulma-"
6
6
  );
data/package-lock.json CHANGED
@@ -14,16 +14,16 @@
14
14
  "devDependencies": {}
15
15
  },
16
16
  "node_modules/bulma": {
17
- "version": "1.0.1",
18
- "resolved": "https://registry.npmjs.org/bulma/-/bulma-1.0.1.tgz",
19
- "integrity": "sha512-+xv/BIAEQakHkR0QVz+s+RjNqfC53Mx9ZYexyaFNFo9wx5i76HXArNdwW7bccyJxa5mgV/T5DcVGqsAB19nBJQ=="
17
+ "version": "1.0.2",
18
+ "resolved": "https://registry.npmjs.org/bulma/-/bulma-1.0.2.tgz",
19
+ "integrity": "sha512-D7GnDuF6seb6HkcnRMM9E739QpEY9chDzzeFrHMyEns/EXyDJuQ0XA0KxbBl/B2NTsKSoDomW61jFGFaAxhK5A=="
20
20
  }
21
21
  },
22
22
  "dependencies": {
23
23
  "bulma": {
24
- "version": "1.0.1",
25
- "resolved": "https://registry.npmjs.org/bulma/-/bulma-1.0.1.tgz",
26
- "integrity": "sha512-+xv/BIAEQakHkR0QVz+s+RjNqfC53Mx9ZYexyaFNFo9wx5i76HXArNdwW7bccyJxa5mgV/T5DcVGqsAB19nBJQ=="
24
+ "version": "1.0.2",
25
+ "resolved": "https://registry.npmjs.org/bulma/-/bulma-1.0.2.tgz",
26
+ "integrity": "sha512-D7GnDuF6seb6HkcnRMM9E739QpEY9chDzzeFrHMyEns/EXyDJuQ0XA0KxbBl/B2NTsKSoDomW61jFGFaAxhK5A=="
27
27
  }
28
28
  }
29
29
  }