bulma-rails 0.7.3 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (63) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +2 -0
  3. data/README.md +1 -1
  4. data/app/assets/stylesheets/bulma.sass +3 -1
  5. data/app/assets/stylesheets/sass/base/_all.sass +0 -1
  6. data/app/assets/stylesheets/sass/base/generic.sass +22 -10
  7. data/app/assets/stylesheets/sass/base/helpers.sass +1 -276
  8. data/app/assets/stylesheets/sass/base/minireset.sass +3 -3
  9. data/app/assets/stylesheets/sass/components/_all.sass +0 -1
  10. data/app/assets/stylesheets/sass/components/breadcrumb.sass +4 -4
  11. data/app/assets/stylesheets/sass/components/card.sass +15 -10
  12. data/app/assets/stylesheets/sass/components/dropdown.sass +15 -11
  13. data/app/assets/stylesheets/sass/components/level.sass +5 -3
  14. data/app/assets/stylesheets/sass/components/media.sass +14 -10
  15. data/app/assets/stylesheets/sass/components/menu.sass +16 -9
  16. data/app/assets/stylesheets/sass/components/message.sass +24 -11
  17. data/app/assets/stylesheets/sass/components/modal.sass +4 -4
  18. data/app/assets/stylesheets/sass/components/navbar.sass +40 -27
  19. data/app/assets/stylesheets/sass/components/pagination.sass +16 -10
  20. data/app/assets/stylesheets/sass/components/panel.sass +33 -15
  21. data/app/assets/stylesheets/sass/components/tabs.sass +36 -13
  22. data/app/assets/stylesheets/sass/elements/_all.sass +0 -1
  23. data/app/assets/stylesheets/sass/elements/box.sass +4 -4
  24. data/app/assets/stylesheets/sass/elements/button.sass +79 -31
  25. data/app/assets/stylesheets/sass/elements/container.sass +14 -15
  26. data/app/assets/stylesheets/sass/elements/content.sass +9 -5
  27. data/app/assets/stylesheets/sass/elements/form.sass +1 -602
  28. data/app/assets/stylesheets/sass/elements/image.sass +2 -0
  29. data/app/assets/stylesheets/sass/elements/notification.sass +16 -3
  30. data/app/assets/stylesheets/sass/elements/progress.sass +16 -14
  31. data/app/assets/stylesheets/sass/elements/table.sass +10 -7
  32. data/app/assets/stylesheets/sass/elements/tag.sass +31 -25
  33. data/app/assets/stylesheets/sass/elements/title.sass +9 -3
  34. data/app/assets/stylesheets/sass/form/_all.sass +8 -0
  35. data/app/assets/stylesheets/sass/form/checkbox-radio.sass +21 -0
  36. data/app/assets/stylesheets/sass/form/file.sass +180 -0
  37. data/app/assets/stylesheets/sass/form/input-textarea.sass +64 -0
  38. data/app/assets/stylesheets/sass/form/select.sass +85 -0
  39. data/app/assets/stylesheets/sass/form/shared.sass +55 -0
  40. data/app/assets/stylesheets/sass/form/tools.sass +213 -0
  41. data/app/assets/stylesheets/sass/grid/columns.sass +7 -7
  42. data/app/assets/stylesheets/sass/grid/tiles.sass +8 -6
  43. data/app/assets/stylesheets/sass/helpers/_all.sass +10 -0
  44. data/app/assets/stylesheets/sass/helpers/color.sass +37 -0
  45. data/app/assets/stylesheets/sass/helpers/float.sass +8 -0
  46. data/app/assets/stylesheets/sass/helpers/other.sass +8 -0
  47. data/app/assets/stylesheets/sass/helpers/overflow.sass +2 -0
  48. data/app/assets/stylesheets/sass/helpers/position.sass +5 -0
  49. data/app/assets/stylesheets/sass/helpers/spacing.sass +28 -0
  50. data/app/assets/stylesheets/sass/helpers/typography.sass +98 -0
  51. data/app/assets/stylesheets/sass/helpers/visibility.sass +122 -0
  52. data/app/assets/stylesheets/sass/layout/footer.sass +4 -1
  53. data/app/assets/stylesheets/sass/layout/hero.sass +23 -34
  54. data/app/assets/stylesheets/sass/utilities/_all.sass +1 -1
  55. data/app/assets/stylesheets/sass/utilities/controls.sass +3 -3
  56. data/app/assets/stylesheets/sass/utilities/derived-variables.scss +132 -0
  57. data/app/assets/stylesheets/sass/utilities/functions.sass +68 -15
  58. data/app/assets/stylesheets/sass/utilities/initial-variables.sass +10 -4
  59. data/app/assets/stylesheets/sass/utilities/mixins.sass +31 -7
  60. data/bulma-rails.gemspec +2 -2
  61. metadata +23 -8
  62. data/app/assets/stylesheets/sass/components/list.sass +0 -39
  63. data/app/assets/stylesheets/sass/utilities/derived-variables.sass +0 -85
@@ -1,25 +1,24 @@
1
+ $container-offset: (2 * $gap) !default
2
+
1
3
  .container
4
+ flex-grow: 1
2
5
  margin: 0 auto
3
6
  position: relative
7
+ width: auto
8
+ &.is-fluid
9
+ max-width: none
10
+ padding-left: $gap
11
+ padding-right: $gap
12
+ width: 100%
4
13
  +desktop
5
- max-width: $desktop - (2 * $gap)
6
- width: $desktop - (2 * $gap)
7
- &.is-fluid
8
- margin-left: $gap
9
- margin-right: $gap
10
- max-width: none
11
- width: auto
14
+ max-width: $desktop - $container-offset
12
15
  +until-widescreen
13
16
  &.is-widescreen
14
- max-width: $widescreen - (2 * $gap)
15
- width: auto
17
+ max-width: $widescreen - $container-offset
16
18
  +until-fullhd
17
19
  &.is-fullhd
18
- max-width: $fullhd - (2 * $gap)
19
- width: auto
20
+ max-width: $fullhd - $container-offset
20
21
  +widescreen
21
- max-width: $widescreen - (2 * $gap)
22
- width: $widescreen - (2 * $gap)
22
+ max-width: $widescreen - $container-offset
23
23
  +fullhd
24
- max-width: $fullhd - (2 * $gap)
25
- width: $fullhd - (2 * $gap)
24
+ max-width: $fullhd - $container-offset
@@ -67,11 +67,11 @@ $content-table-foot-cell-color: $text-strong !default
67
67
  margin-bottom: 1em
68
68
  blockquote
69
69
  background-color: $content-blockquote-background-color
70
- border-left: $content-blockquote-border-left
70
+ +ltr-property("border", $content-blockquote-border-left, false)
71
71
  padding: $content-blockquote-padding
72
72
  ol
73
73
  list-style-position: outside
74
- margin-left: 2em
74
+ +ltr-property("margin", 2em, false)
75
75
  margin-top: 1em
76
76
  &:not([type])
77
77
  list-style-type: decimal
@@ -85,7 +85,7 @@ $content-table-foot-cell-color: $text-strong !default
85
85
  list-style-type: upper-roman
86
86
  ul
87
87
  list-style: disc outside
88
- margin-left: 2em
88
+ +ltr-property("margin", 2em, false)
89
89
  margin-top: 1em
90
90
  ul
91
91
  list-style-type: circle
@@ -93,7 +93,7 @@ $content-table-foot-cell-color: $text-strong !default
93
93
  ul
94
94
  list-style-type: square
95
95
  dd
96
- margin-left: 2em
96
+ +ltr-property("margin", 2em, false)
97
97
  figure
98
98
  margin-left: 2em
99
99
  margin-right: 2em
@@ -125,7 +125,8 @@ $content-table-foot-cell-color: $text-strong !default
125
125
  vertical-align: top
126
126
  th
127
127
  color: $content-table-cell-heading-color
128
- text-align: left
128
+ &:not([align])
129
+ text-align: inherit
129
130
  thead
130
131
  td,
131
132
  th
@@ -142,6 +143,9 @@ $content-table-foot-cell-color: $text-strong !default
142
143
  td,
143
144
  th
144
145
  border-bottom-width: 0
146
+ .tabs
147
+ li + li
148
+ margin-top: 0
145
149
  // Sizes
146
150
  &.is-small
147
151
  font-size: $size-small
@@ -1,602 +1 @@
1
- $input-color: $grey-darker !default
2
- $input-background-color: $white !default
3
- $input-border-color: $grey-lighter !default
4
- $input-height: $control-height !default
5
- $input-shadow: inset 0 1px 2px rgba($black, 0.1) !default
6
- $input-placeholder-color: rgba($input-color, 0.3) !default
7
-
8
- $input-hover-color: $grey-darker !default
9
- $input-hover-border-color: $grey-light !default
10
-
11
- $input-focus-color: $grey-darker !default
12
- $input-focus-border-color: $link !default
13
- $input-focus-box-shadow-size: 0 0 0 0.125em !default
14
- $input-focus-box-shadow-color: rgba($link, 0.25) !default
15
-
16
- $input-disabled-color: $text-light !default
17
- $input-disabled-background-color: $background !default
18
- $input-disabled-border-color: $background !default
19
- $input-disabled-placeholder-color: rgba($input-disabled-color, 0.3) !default
20
-
21
- $input-arrow: $link !default
22
-
23
- $input-icon-color: $grey-lighter !default
24
- $input-icon-active-color: $grey !default
25
-
26
- $input-radius: $radius !default
27
-
28
- $file-border-color: $border !default
29
- $file-radius: $radius !default
30
-
31
- $file-cta-background-color: $white-ter !default
32
- $file-cta-color: $grey-dark !default
33
- $file-cta-hover-color: $grey-darker !default
34
- $file-cta-active-color: $grey-darker !default
35
-
36
- $file-name-border-color: $border !default
37
- $file-name-border-style: solid !default
38
- $file-name-border-width: 1px 1px 1px 0 !default
39
- $file-name-max-width: 16em !default
40
-
41
- $label-color: $grey-darker !default
42
- $label-weight: $weight-bold !default
43
-
44
- $help-size: $size-small !default
45
-
46
- =input
47
- @extend %control
48
- background-color: $input-background-color
49
- border-color: $input-border-color
50
- color: $input-color
51
- +placeholder
52
- color: $input-placeholder-color
53
- &:hover,
54
- &.is-hovered
55
- border-color: $input-hover-border-color
56
- &:focus,
57
- &.is-focused,
58
- &:active,
59
- &.is-active
60
- border-color: $input-focus-border-color
61
- box-shadow: $input-focus-box-shadow-size $input-focus-box-shadow-color
62
- &[disabled],
63
- fieldset[disabled] &
64
- background-color: $input-disabled-background-color
65
- border-color: $input-disabled-border-color
66
- box-shadow: none
67
- color: $input-disabled-color
68
- +placeholder
69
- color: $input-disabled-placeholder-color
70
-
71
- .input,
72
- .textarea
73
- +input
74
- box-shadow: $input-shadow
75
- max-width: 100%
76
- width: 100%
77
- &[readonly]
78
- box-shadow: none
79
- // Colors
80
- @each $name, $pair in $colors
81
- $color: nth($pair, 1)
82
- &.is-#{$name}
83
- border-color: $color
84
- &:focus,
85
- &.is-focused,
86
- &:active,
87
- &.is-active
88
- box-shadow: $input-focus-box-shadow-size rgba($color, 0.25)
89
- // Sizes
90
- &.is-small
91
- +control-small
92
- &.is-medium
93
- +control-medium
94
- &.is-large
95
- +control-large
96
- // Modifiers
97
- &.is-fullwidth
98
- display: block
99
- width: 100%
100
- &.is-inline
101
- display: inline
102
- width: auto
103
-
104
- .input
105
- &.is-rounded
106
- border-radius: $radius-rounded
107
- padding-left: 1em
108
- padding-right: 1em
109
- &.is-static
110
- background-color: transparent
111
- border-color: transparent
112
- box-shadow: none
113
- padding-left: 0
114
- padding-right: 0
115
-
116
- .textarea
117
- display: block
118
- max-width: 100%
119
- min-width: 100%
120
- padding: 0.625em
121
- resize: vertical
122
- &:not([rows])
123
- max-height: 600px
124
- min-height: 120px
125
- &[rows]
126
- height: initial
127
- // Modifiers
128
- &.has-fixed-size
129
- resize: none
130
-
131
- .checkbox,
132
- .radio
133
- cursor: pointer
134
- display: inline-block
135
- line-height: 1.25
136
- position: relative
137
- input
138
- cursor: pointer
139
- &:hover
140
- color: $input-hover-color
141
- &[disabled],
142
- fieldset[disabled] &
143
- color: $input-disabled-color
144
- cursor: not-allowed
145
-
146
- .radio
147
- & + .radio
148
- margin-left: 0.5em
149
-
150
- .select
151
- display: inline-block
152
- max-width: 100%
153
- position: relative
154
- vertical-align: top
155
- &:not(.is-multiple)
156
- height: $input-height
157
- &:not(.is-multiple):not(.is-loading)
158
- &::after
159
- @extend %arrow
160
- border-color: $input-arrow
161
- right: 1.125em
162
- z-index: 4
163
- &.is-rounded
164
- select
165
- border-radius: $radius-rounded
166
- padding-left: 1em
167
- select
168
- +input
169
- cursor: pointer
170
- display: block
171
- font-size: 1em
172
- max-width: 100%
173
- outline: none
174
- &::-ms-expand
175
- display: none
176
- &[disabled]:hover,
177
- fieldset[disabled] &:hover
178
- border-color: $input-disabled-border-color
179
- &:not([multiple])
180
- padding-right: 2.5em
181
- &[multiple]
182
- height: auto
183
- padding: 0
184
- option
185
- padding: 0.5em 1em
186
- // States
187
- &:not(.is-multiple):not(.is-loading):hover
188
- &::after
189
- border-color: $input-hover-color
190
- // Colors
191
- @each $name, $pair in $colors
192
- $color: nth($pair, 1)
193
- &.is-#{$name}
194
- &:not(:hover)::after
195
- border-color: $color
196
- select
197
- border-color: $color
198
- &:hover,
199
- &.is-hovered
200
- border-color: darken($color, 5%)
201
- &:focus,
202
- &.is-focused,
203
- &:active,
204
- &.is-active
205
- box-shadow: $input-focus-box-shadow-size rgba($color, 0.25)
206
- // Sizes
207
- &.is-small
208
- +control-small
209
- &.is-medium
210
- +control-medium
211
- &.is-large
212
- +control-large
213
- // Modifiers
214
- &.is-disabled
215
- &::after
216
- border-color: $input-disabled-color
217
- &.is-fullwidth
218
- width: 100%
219
- select
220
- width: 100%
221
- &.is-loading
222
- &::after
223
- @extend %loader
224
- margin-top: 0
225
- position: absolute
226
- right: 0.625em
227
- top: 0.625em
228
- transform: none
229
- &.is-small:after
230
- font-size: $size-small
231
- &.is-medium:after
232
- font-size: $size-medium
233
- &.is-large:after
234
- font-size: $size-large
235
-
236
- .file
237
- @extend %unselectable
238
- align-items: stretch
239
- display: flex
240
- justify-content: flex-start
241
- position: relative
242
- // Colors
243
- @each $name, $pair in $colors
244
- $color: nth($pair, 1)
245
- $color-invert: nth($pair, 2)
246
- &.is-#{$name}
247
- .file-cta
248
- background-color: $color
249
- border-color: transparent
250
- color: $color-invert
251
- &:hover,
252
- &.is-hovered
253
- .file-cta
254
- background-color: darken($color, 2.5%)
255
- border-color: transparent
256
- color: $color-invert
257
- &:focus,
258
- &.is-focused
259
- .file-cta
260
- border-color: transparent
261
- box-shadow: 0 0 0.5em rgba($color, 0.25)
262
- color: $color-invert
263
- &:active,
264
- &.is-active
265
- .file-cta
266
- background-color: darken($color, 5%)
267
- border-color: transparent
268
- color: $color-invert
269
- // Sizes
270
- &.is-small
271
- font-size: $size-small
272
- &.is-medium
273
- font-size: $size-medium
274
- .file-icon
275
- .fa
276
- font-size: 21px
277
- &.is-large
278
- font-size: $size-large
279
- .file-icon
280
- .fa
281
- font-size: 28px
282
- // Modifiers
283
- &.has-name
284
- .file-cta
285
- border-bottom-right-radius: 0
286
- border-top-right-radius: 0
287
- .file-name
288
- border-bottom-left-radius: 0
289
- border-top-left-radius: 0
290
- &.is-empty
291
- .file-cta
292
- border-radius: $file-radius
293
- .file-name
294
- display: none
295
- &.is-boxed
296
- .file-label
297
- flex-direction: column
298
- .file-cta
299
- flex-direction: column
300
- height: auto
301
- padding: 1em 3em
302
- .file-name
303
- border-width: 0 1px 1px
304
- .file-icon
305
- height: 1.5em
306
- width: 1.5em
307
- .fa
308
- font-size: 21px
309
- &.is-small
310
- .file-icon .fa
311
- font-size: 14px
312
- &.is-medium
313
- .file-icon .fa
314
- font-size: 28px
315
- &.is-large
316
- .file-icon .fa
317
- font-size: 35px
318
- &.has-name
319
- .file-cta
320
- border-radius: $file-radius $file-radius 0 0
321
- .file-name
322
- border-radius: 0 0 $file-radius $file-radius
323
- border-width: 0 1px 1px
324
- &.is-centered
325
- justify-content: center
326
- &.is-fullwidth
327
- .file-label
328
- width: 100%
329
- .file-name
330
- flex-grow: 1
331
- max-width: none
332
- &.is-right
333
- justify-content: flex-end
334
- .file-cta
335
- border-radius: 0 $file-radius $file-radius 0
336
- .file-name
337
- border-radius: $file-radius 0 0 $file-radius
338
- border-width: 1px 0 1px 1px
339
- order: -1
340
-
341
- .file-label
342
- align-items: stretch
343
- display: flex
344
- cursor: pointer
345
- justify-content: flex-start
346
- overflow: hidden
347
- position: relative
348
- &:hover
349
- .file-cta
350
- background-color: darken($file-cta-background-color, 2.5%)
351
- color: $file-cta-hover-color
352
- .file-name
353
- border-color: darken($file-name-border-color, 2.5%)
354
- &:active
355
- .file-cta
356
- background-color: darken($file-cta-background-color, 5%)
357
- color: $file-cta-active-color
358
- .file-name
359
- border-color: darken($file-name-border-color, 5%)
360
-
361
- .file-input
362
- height: 100%
363
- left: 0
364
- opacity: 0
365
- outline: none
366
- position: absolute
367
- top: 0
368
- width: 100%
369
-
370
- .file-cta,
371
- .file-name
372
- @extend %control
373
- border-color: $file-border-color
374
- border-radius: $file-radius
375
- font-size: 1em
376
- padding-left: 1em
377
- padding-right: 1em
378
- white-space: nowrap
379
-
380
- .file-cta
381
- background-color: $file-cta-background-color
382
- color: $file-cta-color
383
-
384
- .file-name
385
- border-color: $file-name-border-color
386
- border-style: $file-name-border-style
387
- border-width: $file-name-border-width
388
- display: block
389
- max-width: $file-name-max-width
390
- overflow: hidden
391
- text-align: left
392
- text-overflow: ellipsis
393
-
394
- .file-icon
395
- align-items: center
396
- display: flex
397
- height: 1em
398
- justify-content: center
399
- margin-right: 0.5em
400
- width: 1em
401
- .fa
402
- font-size: 14px
403
-
404
- .label
405
- color: $label-color
406
- display: block
407
- font-size: $size-normal
408
- font-weight: $label-weight
409
- &:not(:last-child)
410
- margin-bottom: 0.5em
411
- // Sizes
412
- &.is-small
413
- font-size: $size-small
414
- &.is-medium
415
- font-size: $size-medium
416
- &.is-large
417
- font-size: $size-large
418
-
419
- .help
420
- display: block
421
- font-size: $help-size
422
- margin-top: 0.25rem
423
- @each $name, $pair in $colors
424
- $color: nth($pair, 1)
425
- &.is-#{$name}
426
- color: $color
427
-
428
- // Containers
429
-
430
- .field
431
- &:not(:last-child)
432
- margin-bottom: 0.75rem
433
- // Modifiers
434
- &.has-addons
435
- display: flex
436
- justify-content: flex-start
437
- .control
438
- &:not(:last-child)
439
- margin-right: -1px
440
- &:not(:first-child):not(:last-child)
441
- .button,
442
- .input,
443
- .select select
444
- border-radius: 0
445
- &:first-child:not(:only-child)
446
- .button,
447
- .input,
448
- .select select
449
- border-bottom-right-radius: 0
450
- border-top-right-radius: 0
451
- &:last-child:not(:only-child)
452
- .button,
453
- .input,
454
- .select select
455
- border-bottom-left-radius: 0
456
- border-top-left-radius: 0
457
- .button,
458
- .input,
459
- .select select
460
- &:not([disabled])
461
- &:hover,
462
- &.is-hovered
463
- z-index: 2
464
- &:focus,
465
- &.is-focused,
466
- &:active,
467
- &.is-active
468
- z-index: 3
469
- &:hover
470
- z-index: 4
471
- &.is-expanded
472
- flex-grow: 1
473
- &.has-addons-centered
474
- justify-content: center
475
- &.has-addons-right
476
- justify-content: flex-end
477
- &.has-addons-fullwidth
478
- .control
479
- flex-grow: 1
480
- flex-shrink: 0
481
- &.is-grouped
482
- display: flex
483
- justify-content: flex-start
484
- & > .control
485
- flex-shrink: 0
486
- &:not(:last-child)
487
- margin-bottom: 0
488
- margin-right: 0.75rem
489
- &.is-expanded
490
- flex-grow: 1
491
- flex-shrink: 1
492
- &.is-grouped-centered
493
- justify-content: center
494
- &.is-grouped-right
495
- justify-content: flex-end
496
- &.is-grouped-multiline
497
- flex-wrap: wrap
498
- & > .control
499
- &:last-child,
500
- &:not(:last-child)
501
- margin-bottom: 0.75rem
502
- &:last-child
503
- margin-bottom: -0.75rem
504
- &:not(:last-child)
505
- margin-bottom: 0
506
- &.is-horizontal
507
- +tablet
508
- display: flex
509
-
510
- .field-label
511
- .label
512
- font-size: inherit
513
- +mobile
514
- margin-bottom: 0.5rem
515
- +tablet
516
- flex-basis: 0
517
- flex-grow: 1
518
- flex-shrink: 0
519
- margin-right: 1.5rem
520
- text-align: right
521
- &.is-small
522
- font-size: $size-small
523
- padding-top: 0.375em
524
- &.is-normal
525
- padding-top: 0.375em
526
- &.is-medium
527
- font-size: $size-medium
528
- padding-top: 0.375em
529
- &.is-large
530
- font-size: $size-large
531
- padding-top: 0.375em
532
-
533
- .field-body
534
- .field .field
535
- margin-bottom: 0
536
- +tablet
537
- display: flex
538
- flex-basis: 0
539
- flex-grow: 5
540
- flex-shrink: 1
541
- .field
542
- margin-bottom: 0
543
- & > .field
544
- flex-shrink: 1
545
- &:not(.is-narrow)
546
- flex-grow: 1
547
- &:not(:last-child)
548
- margin-right: 0.75rem
549
-
550
- .control
551
- box-sizing: border-box
552
- clear: both //fixes the icon floating out of the input when help text is floated right
553
- font-size: $size-normal
554
- position: relative
555
- text-align: left
556
- // Modifiers
557
- &.has-icons-left,
558
- &.has-icons-right
559
- .input,
560
- .select
561
- &:focus
562
- & ~ .icon
563
- color: $input-icon-active-color
564
- &.is-small ~ .icon
565
- font-size: $size-small
566
- &.is-medium ~ .icon
567
- font-size: $size-medium
568
- &.is-large ~ .icon
569
- font-size: $size-large
570
- .icon
571
- color: $input-icon-color
572
- height: $input-height
573
- pointer-events: none
574
- position: absolute
575
- top: 0
576
- width: $input-height
577
- z-index: 4
578
- &.has-icons-left
579
- .input,
580
- .select select
581
- padding-left: $input-height
582
- .icon.is-left
583
- left: 0
584
- &.has-icons-right
585
- .input,
586
- .select select
587
- padding-right: $input-height
588
- .icon.is-right
589
- right: 0
590
- &.is-loading
591
- &::after
592
- @extend %loader
593
- position: absolute !important
594
- right: 0.625em
595
- top: 0.625em
596
- z-index: 4
597
- &.is-small:after
598
- font-size: $size-small
599
- &.is-medium:after
600
- font-size: $size-medium
601
- &.is-large:after
602
- font-size: $size-large
1
+ @warn "The form.sass file is DEPRECATED. It has moved into its own /form folder. Please import sass/form/_all instead."