intia-theme 0.1.0 → 0.1.4

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 (230) hide show
  1. checksums.yaml +4 -4
  2. data/_includes/hero.html +5 -3
  3. data/_includes/introduction.html +1 -1
  4. data/_includes/story-slider.html +1 -1
  5. data/_layouts/404.html +7 -0
  6. data/_sass/_layout.scss +40 -11
  7. data/_sass/_main.scss +32 -11
  8. data/assets/img/404.png +0 -0
  9. data/assets/img/arrow-down.png +0 -0
  10. data/assets/img/arrow-left.png +0 -0
  11. data/assets/js/main.js +4 -1
  12. data/favicon.png +0 -0
  13. data/node_modules/bulma/CHANGELOG.md +1558 -0
  14. data/node_modules/bulma/LICENSE +21 -0
  15. data/node_modules/bulma/README.md +134 -0
  16. data/node_modules/bulma/bulma.sass +10 -0
  17. data/node_modules/bulma/css/bulma-rtl.css +11811 -0
  18. data/node_modules/bulma/css/bulma-rtl.css.map +1 -0
  19. data/node_modules/bulma/css/bulma-rtl.min.css +1 -0
  20. data/node_modules/bulma/css/bulma.css +11811 -0
  21. data/node_modules/bulma/css/bulma.css.map +1 -0
  22. data/node_modules/bulma/css/bulma.min.css +1 -0
  23. data/node_modules/bulma/package.json +82 -0
  24. data/node_modules/bulma/sass/base/_all.sass +6 -0
  25. data/node_modules/bulma/sass/base/animations.sass +5 -0
  26. data/node_modules/bulma/sass/base/generic.sass +145 -0
  27. data/node_modules/bulma/sass/base/helpers.sass +1 -0
  28. data/node_modules/bulma/sass/base/minireset.sass +79 -0
  29. data/node_modules/bulma/sass/components/_all.sass +15 -0
  30. data/node_modules/bulma/sass/components/breadcrumb.sass +77 -0
  31. data/node_modules/bulma/sass/components/card.sass +103 -0
  32. data/node_modules/bulma/sass/components/dropdown.sass +83 -0
  33. data/node_modules/bulma/sass/components/level.sass +79 -0
  34. data/node_modules/bulma/sass/components/media.sass +59 -0
  35. data/node_modules/bulma/sass/components/menu.sass +59 -0
  36. data/node_modules/bulma/sass/components/message.sass +101 -0
  37. data/node_modules/bulma/sass/components/modal.sass +117 -0
  38. data/node_modules/bulma/sass/components/navbar.sass +446 -0
  39. data/node_modules/bulma/sass/components/pagination.sass +166 -0
  40. data/node_modules/bulma/sass/components/panel.sass +121 -0
  41. data/node_modules/bulma/sass/components/tabs.sass +176 -0
  42. data/node_modules/bulma/sass/elements/_all.sass +16 -0
  43. data/node_modules/bulma/sass/elements/box.sass +26 -0
  44. data/node_modules/bulma/sass/elements/button.sass +345 -0
  45. data/node_modules/bulma/sass/elements/container.sass +29 -0
  46. data/node_modules/bulma/sass/elements/content.sass +159 -0
  47. data/node_modules/bulma/sass/elements/form.sass +1 -0
  48. data/node_modules/bulma/sass/elements/icon.sass +46 -0
  49. data/node_modules/bulma/sass/elements/image.sass +73 -0
  50. data/node_modules/bulma/sass/elements/notification.sass +52 -0
  51. data/node_modules/bulma/sass/elements/other.sass +31 -0
  52. data/node_modules/bulma/sass/elements/progress.sass +73 -0
  53. data/node_modules/bulma/sass/elements/table.sass +133 -0
  54. data/node_modules/bulma/sass/elements/tag.sass +140 -0
  55. data/node_modules/bulma/sass/elements/title.sass +70 -0
  56. data/node_modules/bulma/sass/form/_all.sass +9 -0
  57. data/node_modules/bulma/sass/form/checkbox-radio.sass +22 -0
  58. data/node_modules/bulma/sass/form/file.sass +184 -0
  59. data/node_modules/bulma/sass/form/input-textarea.sass +66 -0
  60. data/node_modules/bulma/sass/form/select.sass +87 -0
  61. data/node_modules/bulma/sass/form/shared.sass +60 -0
  62. data/node_modules/bulma/sass/form/tools.sass +215 -0
  63. data/node_modules/bulma/sass/grid/_all.sass +5 -0
  64. data/node_modules/bulma/sass/grid/columns.sass +513 -0
  65. data/node_modules/bulma/sass/grid/tiles.sass +36 -0
  66. data/node_modules/bulma/sass/helpers/_all.sass +12 -0
  67. data/node_modules/bulma/sass/helpers/color.sass +39 -0
  68. data/node_modules/bulma/sass/helpers/flexbox.sass +35 -0
  69. data/node_modules/bulma/sass/helpers/float.sass +10 -0
  70. data/node_modules/bulma/sass/helpers/other.sass +14 -0
  71. data/node_modules/bulma/sass/helpers/overflow.sass +2 -0
  72. data/node_modules/bulma/sass/helpers/position.sass +7 -0
  73. data/node_modules/bulma/sass/helpers/spacing.sass +31 -0
  74. data/node_modules/bulma/sass/helpers/typography.sass +103 -0
  75. data/node_modules/bulma/sass/helpers/visibility.sass +122 -0
  76. data/node_modules/bulma/sass/layout/_all.sass +6 -0
  77. data/node_modules/bulma/sass/layout/footer.sass +11 -0
  78. data/node_modules/bulma/sass/layout/hero.sass +153 -0
  79. data/node_modules/bulma/sass/layout/section.sass +17 -0
  80. data/node_modules/bulma/sass/utilities/_all.sass +9 -0
  81. data/node_modules/bulma/sass/utilities/animations.sass +1 -0
  82. data/node_modules/bulma/sass/utilities/controls.sass +49 -0
  83. data/node_modules/bulma/sass/utilities/derived-variables.sass +114 -0
  84. data/node_modules/bulma/sass/utilities/extends.sass +25 -0
  85. data/node_modules/bulma/sass/utilities/functions.sass +136 -0
  86. data/node_modules/bulma/sass/utilities/initial-variables.sass +78 -0
  87. data/node_modules/bulma/sass/utilities/mixins.sass +280 -0
  88. data/node_modules/bulma-block-list/LICENSE.txt +21 -0
  89. data/node_modules/bulma-block-list/README.md +32 -0
  90. data/node_modules/bulma-block-list/node_modules/bulma/CHANGELOG.md +1390 -0
  91. data/node_modules/bulma-block-list/node_modules/bulma/LICENSE +21 -0
  92. data/node_modules/bulma-block-list/node_modules/bulma/README.md +130 -0
  93. data/node_modules/bulma-block-list/node_modules/bulma/bulma.sass +9 -0
  94. data/node_modules/bulma-block-list/node_modules/bulma/css/bulma.css +10855 -0
  95. data/node_modules/bulma-block-list/node_modules/bulma/css/bulma.css.map +1 -0
  96. data/node_modules/bulma-block-list/node_modules/bulma/css/bulma.min.css +1 -0
  97. data/node_modules/bulma-block-list/node_modules/bulma/package.json +80 -0
  98. data/node_modules/bulma-block-list/node_modules/bulma/sass/base/_all.sass +5 -0
  99. data/node_modules/bulma-block-list/node_modules/bulma/sass/base/generic.sass +142 -0
  100. data/node_modules/bulma-block-list/node_modules/bulma/sass/base/helpers.sass +281 -0
  101. data/node_modules/bulma-block-list/node_modules/bulma/sass/base/minireset.sass +79 -0
  102. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/_all.sass +15 -0
  103. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/breadcrumb.sass +75 -0
  104. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/card.sass +79 -0
  105. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/dropdown.sass +81 -0
  106. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/level.sass +77 -0
  107. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/list.sass +39 -0
  108. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/media.sass +50 -0
  109. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/menu.sass +57 -0
  110. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/message.sass +99 -0
  111. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/modal.sass +113 -0
  112. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/navbar.sass +441 -0
  113. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/pagination.sass +150 -0
  114. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/panel.sass +119 -0
  115. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/tabs.sass +151 -0
  116. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/_all.sass +15 -0
  117. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/box.sass +24 -0
  118. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/button.sass +323 -0
  119. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/container.sass +24 -0
  120. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/content.sass +155 -0
  121. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/form.sass +1 -0
  122. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/icon.sass +21 -0
  123. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/image.sass +71 -0
  124. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/notification.sass +43 -0
  125. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/other.sass +39 -0
  126. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/progress.sass +67 -0
  127. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/table.sass +127 -0
  128. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/tag.sass +128 -0
  129. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/title.sass +70 -0
  130. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/_all.sass +8 -0
  131. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/checkbox-radio.sass +21 -0
  132. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/file.sass +180 -0
  133. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/input-textarea.sass +64 -0
  134. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/select.sass +85 -0
  135. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/shared.sass +55 -0
  136. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/tools.sass +205 -0
  137. data/node_modules/bulma-block-list/node_modules/bulma/sass/grid/_all.sass +4 -0
  138. data/node_modules/bulma-block-list/node_modules/bulma/sass/grid/columns.sass +504 -0
  139. data/node_modules/bulma-block-list/node_modules/bulma/sass/grid/tiles.sass +34 -0
  140. data/node_modules/bulma-block-list/node_modules/bulma/sass/layout/_all.sass +5 -0
  141. data/node_modules/bulma-block-list/node_modules/bulma/sass/layout/footer.sass +9 -0
  142. data/node_modules/bulma-block-list/node_modules/bulma/sass/layout/hero.sass +145 -0
  143. data/node_modules/bulma-block-list/node_modules/bulma/sass/layout/section.sass +13 -0
  144. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/_all.sass +8 -0
  145. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/animations.sass +5 -0
  146. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/controls.sass +50 -0
  147. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/derived-variables.sass +106 -0
  148. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/functions.sass +110 -0
  149. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/initial-variables.sass +77 -0
  150. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/mixins.sass +261 -0
  151. data/node_modules/bulma-block-list/package.json +59 -0
  152. data/node_modules/bulma-block-list/src/block-list.scss +109 -0
  153. data/node_modules/bulma-block-list/src/demo.scss +3 -0
  154. data/node_modules/bulma-carousel/CHANGELOG.md +307 -0
  155. data/node_modules/bulma-carousel/LICENSE +21 -0
  156. data/node_modules/bulma-carousel/README.md +13 -0
  157. data/node_modules/bulma-carousel/dist/css/bulma-carousel.min.css +1 -0
  158. data/node_modules/bulma-carousel/dist/js/bulma-carousel.js +2371 -0
  159. data/node_modules/bulma-carousel/package.json +108 -0
  160. data/node_modules/bulma-carousel/src/demo/_data/events.yml +15 -0
  161. data/node_modules/bulma-carousel/src/demo/_data/getters.yml +26 -0
  162. data/node_modules/bulma-carousel/src/demo/_data/menu.yml +26 -0
  163. data/node_modules/bulma-carousel/src/demo/_data/methods.yml +57 -0
  164. data/node_modules/bulma-carousel/src/demo/_data/options.yml +79 -0
  165. data/node_modules/bulma-carousel/src/demo/_data/setters.yml +0 -0
  166. data/node_modules/bulma-carousel/src/demo/_data/tree.yml +30 -0
  167. data/node_modules/bulma-carousel/src/demo/_includes/anchor.html +3 -0
  168. data/node_modules/bulma-carousel/src/demo/_includes/breadcrumb.html +5 -0
  169. data/node_modules/bulma-carousel/src/demo/_includes/events.html +33 -0
  170. data/node_modules/bulma-carousel/src/demo/_includes/getters.html +28 -0
  171. data/node_modules/bulma-carousel/src/demo/_includes/head.html +22 -0
  172. data/node_modules/bulma-carousel/src/demo/_includes/menu.html +22 -0
  173. data/node_modules/bulma-carousel/src/demo/_includes/methods.html +49 -0
  174. data/node_modules/bulma-carousel/src/demo/_includes/options.html +33 -0
  175. data/node_modules/bulma-carousel/src/demo/_includes/setters.html +28 -0
  176. data/node_modules/bulma-carousel/src/demo/_includes/tree.html +25 -0
  177. data/node_modules/bulma-carousel/src/demo/_includes/variables.html +28 -0
  178. data/node_modules/bulma-carousel/src/demo/_layouts/default.html +47 -0
  179. data/node_modules/bulma-carousel/src/demo/assets/css/bulma-carousel.min.css +1 -0
  180. data/node_modules/bulma-carousel/src/demo/assets/css/documentation.min.css +1 -0
  181. data/node_modules/bulma-carousel/src/demo/assets/css/highlight.css +78 -0
  182. data/node_modules/bulma-carousel/src/demo/assets/images/1.jpg +0 -0
  183. data/node_modules/bulma-carousel/src/demo/assets/images/2.jpg +0 -0
  184. data/node_modules/bulma-carousel/src/demo/assets/images/3.jpg +0 -0
  185. data/node_modules/bulma-carousel/src/demo/assets/images/4.jpg +0 -0
  186. data/node_modules/bulma-carousel/src/demo/assets/images/5.jpg +0 -0
  187. data/node_modules/bulma-carousel/src/demo/assets/images/6.jpg +0 -0
  188. data/node_modules/bulma-carousel/src/demo/assets/images/left.svg +3 -0
  189. data/node_modules/bulma-carousel/src/demo/assets/images/right.svg +3 -0
  190. data/node_modules/bulma-carousel/src/demo/assets/js/bulma-carousel.min.js +1 -0
  191. data/node_modules/bulma-carousel/src/demo/assets/js/doc.js +111 -0
  192. data/node_modules/bulma-carousel/src/demo/assets/js/main.js +23 -0
  193. data/node_modules/bulma-carousel/src/demo/changelog.html +17 -0
  194. data/node_modules/bulma-carousel/src/demo/customization.html +78 -0
  195. data/node_modules/bulma-carousel/src/demo/demonstration/index.html +402 -0
  196. data/node_modules/bulma-carousel/src/demo/index.html +396 -0
  197. data/node_modules/bulma-carousel/src/js/components/Media.js +129 -0
  198. data/node_modules/bulma-carousel/src/js/components/autoplay.js +111 -0
  199. data/node_modules/bulma-carousel/src/js/components/breakpoint.js +91 -0
  200. data/node_modules/bulma-carousel/src/js/components/infinite.js +60 -0
  201. data/node_modules/bulma-carousel/src/js/components/loop.js +35 -0
  202. data/node_modules/bulma-carousel/src/js/components/navigation.js +107 -0
  203. data/node_modules/bulma-carousel/src/js/components/pagination.js +103 -0
  204. data/node_modules/bulma-carousel/src/js/components/swipe.js +106 -0
  205. data/node_modules/bulma-carousel/src/js/components/transitioner.js +74 -0
  206. data/node_modules/bulma-carousel/src/js/components/transitions/fade.js +90 -0
  207. data/node_modules/bulma-carousel/src/js/components/transitions/translate.js +98 -0
  208. data/node_modules/bulma-carousel/src/js/defaultOptions.js +50 -0
  209. data/node_modules/bulma-carousel/src/js/index.js +428 -0
  210. data/node_modules/bulma-carousel/src/js/templates/index.js +5 -0
  211. data/node_modules/bulma-carousel/src/js/templates/item.js +3 -0
  212. data/node_modules/bulma-carousel/src/js/templates/navigation.js +4 -0
  213. data/node_modules/bulma-carousel/src/js/templates/pagination-page.js +3 -0
  214. data/node_modules/bulma-carousel/src/js/templates/pagination.js +3 -0
  215. data/node_modules/bulma-carousel/src/js/utils/coordinate.js +98 -0
  216. data/node_modules/bulma-carousel/src/js/utils/css.js +84 -0
  217. data/node_modules/bulma-carousel/src/js/utils/detect-prefixes.js +50 -0
  218. data/node_modules/bulma-carousel/src/js/utils/detect-supportsPassive.js +16 -0
  219. data/node_modules/bulma-carousel/src/js/utils/device.js +17 -0
  220. data/node_modules/bulma-carousel/src/js/utils/dom.js +10 -0
  221. data/node_modules/bulma-carousel/src/js/utils/eventEmitter.js +19 -0
  222. data/node_modules/bulma-carousel/src/js/utils/events.js +65 -0
  223. data/node_modules/bulma-carousel/src/js/utils/index.js +16 -0
  224. data/node_modules/bulma-carousel/src/js/utils/type.js +21 -0
  225. data/node_modules/bulma-carousel/src/sass/index.sass +145 -0
  226. data/package-lock.json +32 -0
  227. data/package.json +10 -0
  228. metadata +222 -4
  229. data/_config.yml +0 -72
  230. data/assets/img/arrow.png +0 -0
@@ -0,0 +1,1390 @@
1
+ # Bulma Changelog
2
+
3
+ ## 0.8.2
4
+
5
+ ### Bug fixes
6
+
7
+ * Fix #2885 -> Revert `$input-color: $text-strong`
8
+
9
+ ## 0.8.1
10
+
11
+ ### Improvements
12
+
13
+ * #2709 Add light colors to the `notification` element
14
+ * #2740 Fixes #2739 -> Add variables size for layout `hero`
15
+ * Fix #2741 -> Create `bulmaRgba()` function to support `inherit` value
16
+ * #2756 Add `$button-text-decoration` variable
17
+
18
+ ### Bug fixes
19
+
20
+ * #2664 Fixes #2671 -> Add `$panel-colors` variable
21
+
22
+ ## 0.8.0
23
+
24
+ ### Big update
25
+
26
+ #### Larger form controls
27
+
28
+ Controls and buttons are now `2.5em` high. You can revert this resizing by setting these previous values:
29
+
30
+ ```sass
31
+ $control-height: 2.25em
32
+ $control-padding-vertical: calc(0.375em - #{$control-border-width})
33
+ $control-padding-horizontal: calc(0.625em - #{$control-border-width})
34
+ $button-padding-vertical: calc(0.375em - #{$button-border-width})
35
+ $button-padding-horizontal: 0.75em
36
+ ```
37
+
38
+ #### Light and dark colors
39
+
40
+ Each main color (`"primary"`, `"info"`, `"success"`, `"warning"`, `"danger"`) now has a `*-light` and `*-dark` version. They are calculated using 2 new color functions:
41
+
42
+ * `findLightColor()` which finds the light version of a color
43
+ * `findDarkolor()` which finds the dark version of a color
44
+
45
+ The light colors are used by the `button` element, while the light and dark colors are used by the `message` component.
46
+
47
+ #### Panel colors
48
+
49
+ The `panel` component is now available in all the different colors.
50
+
51
+ #### 4-value color map
52
+
53
+ The `$colors` Sass map now accepts, for each of its values, a map of up to **4** values. For example: the key `"info"` now has the `($info, $info-invert, $info-light, $info-dark)` map.
54
+
55
+ If you provide a `$custom-colors` map, you can decide to provide a map of 1, 2, 3 or 4 values for each value. If fewer than 4 are provided, Bulma will calculate the remaining ones:
56
+
57
+ ```scss
58
+ $custom-colors: (
59
+ "lime": (lime),
60
+ "tomato": (tomato, white),
61
+ "orange": ($orange, $orange-invert, $orange-light),
62
+ "lavender": ($lavender, $lavender-invert, $lavender-light, $lavender-dark)
63
+ );
64
+ ```
65
+
66
+ This is processed by the updated `mergeColorMaps()` Sass function.
67
+
68
+ #### Scheme variables
69
+
70
+ There are 6 new `$scheme` derived variables: `$scheme-main` `$scheme-main-bis` `$scheme-main-ter` `$scheme-invert` `$scheme-invert-bis` `$scheme-invert-ter`
71
+ They replace the `$white` and `$black` occurences in the codebase. This makes it easy to create a "Dark mode" simply by swapping the values:
72
+
73
+ ```sass
74
+ $scheme-main: $black
75
+ $scheme-invert: $white
76
+ // etc.
77
+ ```
78
+
79
+ That is also why most of the codebase now references **derived** variables (`$text`, `$background`, `$border` etc.) instead of **initial** ones (`$grey`, `$grey-lighter`, `$grey-darker` etc.): updating the derived variables will affect all elements and components directly.
80
+
81
+ #### Initial variables
82
+
83
+ * `$green: hsl(141, 53%, 53%)`
84
+ * `$cyan: hsl(204, 71%, 53%)`
85
+ * `$red: hsl(348, 86%, 61%)`
86
+
87
+ #### Derived variables
88
+
89
+ * `$primary-invert: findColorInvert($primary)`
90
+ * `$primary-light: findLightColor($primary)`
91
+ * `$primary-dark: findDarkColor($primary)`
92
+ * `$info-invert: findColorInvert($info)`
93
+ * `$info-light: findLightColor($info)`
94
+ * `$info-dark: findDarkColor($info)`
95
+ * `$success-invert: findColorInvert($success)`
96
+ * `$success-light: findLightColor($success)`
97
+ * `$success-dark: findDarkColor($success)`
98
+ * `$warning-invert: findColorInvert($warning)`
99
+ * `$warning-light: findLightColor($warning)`
100
+ * `$warning-dark: findDarkColor($warning)`
101
+ * `$danger-invert: findColorInvert($danger)`
102
+ * `$danger-light: findLightColor($danger)`
103
+ * `$danger-dark: findDarkColor($danger)`
104
+ * `$light-invert: findColorInvert($light)`
105
+ * `$dark-invert: findColorInvert($dark)`
106
+
107
+ * `$scheme-main: $white`
108
+ * `$scheme-main-bis: $white-bis`
109
+ * `$scheme-main-ter: $white-ter`
110
+ * `$scheme-invert: $black`
111
+ * `$scheme-invert-bis: $black-bis`
112
+ * `$scheme-invert-ter: $black-ter`
113
+
114
+ ### Other variables
115
+
116
+ * `$control-height: 2.5em`
117
+ * `$control-padding-vertical: calc(0.5em - #{$control-border-width})`
118
+ * `$control-padding-horizontal: calc(0.75em - #{$control-border-width})`
119
+ * `$media-border-color: rgba($border, 0.5)`
120
+ * `$notification-code-background-color: $scheme-main`
121
+ * `$panel-radius: $radius-large`
122
+ * `$panel-shadow: 0 0.5em 1em -0.125em rgba($scheme-invert, 0.1), 0 0px 0 1px rgba($scheme-invert, 0.02)`
123
+ * `$textarea-padding: $control-padding-horizontal`
124
+ * `$textarea-max-height: 40em`
125
+ * `$textarea-min-height: 8em`
126
+
127
+ ### Bug fixes
128
+
129
+ * Fix #2647 -> Missing meta tags in snippet
130
+ * Fix #2031, Fix #2483 -> Invalid output when declaring a custom shade map
131
+ * Fix #2060 -> `height: auto` on HTML `audio` element breaks height of element
132
+ * Fix #706 -> Derive `-invert` variables using `findColorInvert()`
133
+ * #1608 Fix #1552 -> `.container.is-fluid` margins
134
+
135
+ ### New features
136
+
137
+ * #2563 `.image` has a new `.is-fullwidth` modifier
138
+
139
+ ## 0.7.5
140
+
141
+ ### Deprecation warning
142
+
143
+ The `form.sass` file is **deprecated**. It has moved into its own `/form` folder. If you were importing `form.sass`, please import `sass/form/_all.sass` now.
144
+ If you were simply importing the whole of Bulma with `@import "~/bulma/bulma.sass"` or similar, you won't have to change anything, and everything will work as before.
145
+
146
+ ### New features
147
+
148
+ #### Support for overriding the `font-family`
149
+
150
+ You can now specify a different `font-family` for the `.title`, `.subtitle` and `.button` by using the variables `$title-family`, `$subtitle-family` and `$button-family` respectively.
151
+
152
+ Simply set a value when importing Bulma:
153
+
154
+ ```scss
155
+ $title-family: "Georgia", serif;
156
+ ```
157
+
158
+ * #2375 Add `.is-relative` helper
159
+ * #2321 Make `.navbar` focus behave like hover for the navigation
160
+ * #2290 Fix #1186 -> Reset the offset on columns
161
+ * #2231 Add `.has-text-weight-medium` helper
162
+ * #2224 Add customizable border radius to progress bar
163
+ * #2480 Add `$footer-color` variable
164
+
165
+ ### Improvements
166
+
167
+ * #2396 Update docs with webpack 4 example
168
+ * #2381 Make centered buttons have equal margin
169
+ * Fix #2297 -> Remove `.container` fixed width values, use `flex-grow`
170
+ * #2478 Move form.sass into its own folder
171
+
172
+ ### Bug fixes
173
+
174
+ * #2420 Fix #2414 -> Fix `align` attribute in `td/th` being ignored
175
+ * #2463 Remove duplicate `.has-addons` in `tag.sass`
176
+ * #2253 Fix `$gap` variable default value
177
+ * #2273 Fix #2258 -> Fix Indeterminate Progress Bar animation in Firefox
178
+ * #2175 Proper aligning for `.tabs` within `.content`
179
+ * #2476 Fix #2441 -> Correct active pagination link text colour on hero
180
+
181
+ Fix #1979 -> Correct loading spinner color when a button is:
182
+
183
+ * outlined and hovered/focused
184
+ * outlined, inverted and hovered/focused
185
+
186
+ ### New variables
187
+
188
+ #### Initial variables
189
+
190
+ * `$block-spacing`
191
+
192
+ #### Base
193
+
194
+ * `$body-font-size`
195
+ * `$small-font-size`
196
+ * `$pre-font-size`
197
+ * `$pre-padding`
198
+ * `$pre-code-font-size`
199
+
200
+ #### Components
201
+
202
+ * `$card-header-padding`
203
+ * `$card-content-padding`
204
+ * `$card-media-margin`
205
+ * `$dropdown-menu-min-width`
206
+ * `$dropdown-content-padding-bottom`
207
+ * `$dropdown-content-padding-top`
208
+ * `$level-item-spacing`
209
+ * `$menu-list-line-height`
210
+ * `$menu-list-link-padding`
211
+ * `$menu-nested-list-margin`
212
+ * `$menu-nested-list-padding-left`
213
+ * `$menu-label-font-size`
214
+ * `$menu-label-letter-spacing`
215
+ * `$menu-label-spacing`
216
+ * `$pagination-item-font-size`
217
+ * `$pagination-item-margin`
218
+ * `$pagination-item-padding-left`
219
+ * `$pagination-item-padding-right`
220
+ * `$panel-margin`
221
+ * `$panel-tabs-font-size`
222
+
223
+ #### Elements
224
+
225
+ * `$container-offset`
226
+
227
+ #### Grid
228
+
229
+ * `$tile-spacing`
230
+
231
+ ## 0.7.3
232
+
233
+ ### New features
234
+
235
+ * #2145 Fix #372 -> New indeterminate progress bars
236
+ * #2206 Fix #2046 -> New variables `$table-head-background-color`, `$table-body-background-color` and `$table-foot-background-color` for the `.table` element
237
+ * #592 -> Give arbitrary elements access to the image/ratio classes
238
+ * #1682 Fix #1681 -> Adds disabled styles for `<fieldset disabled>`
239
+ * #2201 Fix #1875 -> `.buttons` and `.tags` group sizing (`.are-small`, `.are-medium`, `.are-large`)
240
+
241
+ ### Improvements
242
+
243
+ * #1978 Fix #1696 -> Force `box-sizing: border-box` on `details` element
244
+ * #2167 Fix #1878 -> New `$footer-padding` variable
245
+ * #2168 -> New `$input-placeholder-color` and `$input-disabled-placeholder-color` variables
246
+
247
+ ### Bug fixes
248
+
249
+ * #2157 Fix #1656 -> Allow border radius if only one `.control` in `.field`
250
+ * #2091 Fix #2091 -> Remove CSS rule which causes `.tag.has-addons` to not work correctly
251
+ * #2186 Fix #1130 -> Prevent `.dropdown` links underlining in `.message` component
252
+ * Fix #2154 -> Move `.hero.is-fullheight-with-navbar` to `navbar.sass` file
253
+
254
+ ### Deprecation
255
+
256
+ * `.control.has-icon` deprecated in favor of `.control.has-icons`
257
+
258
+ ## 0.7.2
259
+
260
+ ### New features
261
+
262
+ * #1884 New `$navbar-burger-color` variable
263
+ * #1679 Add breakpoint based column gaps
264
+ * #1905 Fix `modal` for IE11 #1902
265
+ * #1919 New `is-arrowless` class for navbar items
266
+ * #1949 New `is-fullheight-with-navbar` class for heros
267
+ * #1764 New `.is-sr-only` helper
268
+ * #2109 Add and use `$navbar-breakpoint` variable
269
+ * New variables `$control-height`, `$control-line-height`, `$pagination-min-width`, `$input-height`
270
+ * #1720 Add list element feature
271
+ * #2123 Add `.content ol` types: `.is-lower-roman`, `.is-upper-roman`, `.is-lower-alpha`, `.is-upper-alpha`, and support for the `type=` HTML attribute
272
+
273
+ ### Improvements
274
+
275
+ * #1964 Allow `.notification` to have a `.dropdown-item`
276
+ * #1999 Change `$border` to `$grey-lighter` in mixins
277
+ * #2085 `.media-content` will allow scrolling horizontally if the content is too wide
278
+ * #1744 Fix #1710 by using `$table-striped-row-even-hover-background-color` only for even rows
279
+ * #2074 Allow `<button>` as `.dropdown-item`
280
+
281
+ ### Bug fixes
282
+
283
+ * #1749 Fix icons floating out of input area
284
+ * #1993 Fixes #1992 Prevent disabled form elements hover state from overlapping, if control has add-ons elements
285
+ * #1909 Fix Modal card in IE11
286
+ * #1908 Fix IE11 when textarea doesn't listen to `size=""`
287
+ * Fix #1991 The last button in list of full-width buttons has longer width
288
+ * #1982 Fix navbar-burger color when color modifier is used
289
+ * #1819 Fix #1137 error message for required file
290
+ * Fix #1904 and #1969: hide native file input in Chrome
291
+ * #2059 Remove unnecessary right margin from last level-item (level.is-mobile)
292
+
293
+ ## 0.7.1
294
+
295
+ ### Improvements
296
+
297
+ * #1789 Add all shades to `has-background-*` helpers
298
+
299
+ ### Bug fixes
300
+
301
+ * #1796 #1806 Remove navbar `box-shadow` by default
302
+
303
+ ## 0.7.0
304
+
305
+ ### New features
306
+
307
+ * New variables `$widescreen-enabled` and `$fullhd-enabled`: you can set them to `false` to disable each breakpoint
308
+ * New variables `$control-border-width` and `$button-border-width`
309
+ * 🎉 #1624 Add some common photography aspect ratios and portrait ratios
310
+ * 🎉 #1747 New `$custom-colors` and `$custom-shades` variable for adding your own colors and shades to Bulma's `$colors` and `$shades` maps respectively
311
+
312
+ ### Improvements
313
+
314
+ * #1619 Add `$card-header-background-color`, `$card-content-background-color` and `$card-footer-background-color` to allow different background customization for card elements
315
+ * #1669 Add `.is-expanded` modifier to `.buttons.has-addons`
316
+ * #1628 Add `.has-background` helpers for block background colors, like `.has-text`
317
+ * #1767 Added minified bundle with cleancss
318
+
319
+ ### Bug fixes
320
+
321
+ * #1778 Fix `is-text-right` precedence over `is-text-left-mobile`
322
+ * #1571 Fix position of delete button on `.tag`
323
+ * #1549 Implementing a simple version of the native sass percentage function
324
+ * #1707 Disable table hover in `.content` by default
325
+ * #1428 Fix `media-content` overflow
326
+
327
+ ### Variable changes
328
+
329
+ #### Updated default values
330
+
331
+ <table class="table is-bordered">
332
+ <tbody>
333
+ <tr>
334
+ <th class="is-light" colspan="3">
335
+ File
336
+ <code>sass/utilities/initial-variables.sass</code>
337
+ </th>
338
+ </tr>
339
+ <tr>
340
+ <th>Variable</th>
341
+ <th>From</th>
342
+ <th>To</th>
343
+ </tr>
344
+ <tr>
345
+ <td>
346
+ <code>$gap</code>
347
+ </td>
348
+ <td>
349
+ <code>32px</code>
350
+ </td>
351
+ <td>
352
+ <code>64px</code>
353
+ </td>
354
+ </tr>
355
+ <tr>
356
+ <td>
357
+ <code>$radius</code>
358
+ </td>
359
+ <td>
360
+ <code>3px</code>
361
+ </td>
362
+ <td>
363
+ <code>4px</code>
364
+ </td>
365
+ </tr>
366
+ <tr>
367
+ <td>
368
+ <code>$radius-large</code>
369
+ </td>
370
+ <td>
371
+ <code>5px</code>
372
+ </td>
373
+ <td>
374
+ <code>6px</code>
375
+ </td>
376
+ </tr>
377
+ </tbody>
378
+ </table>
379
+
380
+ <table class="table is-bordered">
381
+ <tbody>
382
+ <tr>
383
+ <th class="is-light" colspan="3">
384
+ File
385
+ <code>sass/base/generic.sass</code>
386
+ </th>
387
+ </tr>
388
+ <tr>
389
+ <th>Variable</th>
390
+ <th>From</th>
391
+ <th>To</th>
392
+ </tr>
393
+ <tr>
394
+ <td>
395
+ <code>$hr-background-color</code>
396
+ </td>
397
+ <td>
398
+ <code>$border</code>
399
+ </td>
400
+ <td>
401
+ <code>$background</code>
402
+ </td>
403
+ </tr>
404
+ <tr>
405
+ <td>
406
+ <code>$hr-height</code>
407
+ </td>
408
+ <td>
409
+ <code>1px</code>
410
+ </td>
411
+ <td>
412
+ <code>2px</code>
413
+ </td>
414
+ </tr>
415
+ </tbody>
416
+ </table>
417
+
418
+ <table class="table is-bordered">
419
+ <tbody>
420
+ <tr>
421
+ <th class="is-light" colspan="3">
422
+ File
423
+ <code>sass/elements/content.sass</code>
424
+ </th>
425
+ </tr>
426
+ <tr>
427
+ <th>Variable</th>
428
+ <th>From</th>
429
+ <th>To</th>
430
+ </tr>
431
+ <tr>
432
+ <td>
433
+ <code>$content-heading-weight</code>
434
+ </td>
435
+ <td>
436
+ <code>$weight-normal</code>
437
+ </td>
438
+ <td>
439
+ <code>$weight-semibold</code>
440
+ </td>
441
+ </tr>
442
+ </tbody>
443
+ </table>
444
+
445
+ <table class="table is-bordered">
446
+ <tbody>
447
+ <tr>
448
+ <th class="is-light" colspan="3">
449
+ File
450
+ <code>sass/components/message.sass</code>
451
+ </th>
452
+ </tr>
453
+ <tr>
454
+ <th>Variable</th>
455
+ <th>From</th>
456
+ <th>To</th>
457
+ </tr>
458
+ <tr>
459
+ <td>
460
+ <code>$message-header-padding</code>
461
+ </td>
462
+ <td>
463
+ <code>0.5em 0.75em</code>
464
+ </td>
465
+ <td>
466
+ <code>0.75em 1em</code>
467
+ </td>
468
+ </tr>
469
+ <tr>
470
+ <td>
471
+ <code>$message-body-padding</code>
472
+ </td>
473
+ <td>
474
+ <code>1em 1.25em</code>
475
+ </td>
476
+ <td>
477
+ <code>1.25em 1.5em</code>
478
+ </td>
479
+ </tr>
480
+ </tbody>
481
+ </table>
482
+
483
+ <table class="table is-bordered">
484
+ <tbody>
485
+ <tr>
486
+ <th class="is-light" colspan="3">
487
+ File
488
+ <code>sass/components/navbar.sass</code>
489
+ </th>
490
+ </tr>
491
+ <tr>
492
+ <th>Variable</th>
493
+ <th>From</th>
494
+ <th>To</th>
495
+ </tr>
496
+ <tr>
497
+ <td>
498
+ <code>$navbar-item-hover-background-color</code>
499
+ </td>
500
+ <td>
501
+ <code>$background</code>
502
+ </td>
503
+ <td>
504
+ <code>$white-bis</code>
505
+ </td>
506
+ </tr>
507
+ <tr>
508
+ <td>
509
+ <code>$navbar-dropdown-border-top</code>
510
+ </td>
511
+ <td>
512
+ <code>1px solid $border</code>
513
+ </td>
514
+ <td>
515
+ <code>2px solid $border</code>
516
+ </td>
517
+ </tr>
518
+ <tr>
519
+ <td>
520
+ <code>$navbar-divider-background-color</code>
521
+ </td>
522
+ <td>
523
+ <code>$border</code>
524
+ </td>
525
+ <td>
526
+ <code>$background</code>
527
+ </td>
528
+ </tr>
529
+ </tbody>
530
+ </table>
531
+
532
+ <table class="table is-bordered">
533
+ <tbody>
534
+ <tr>
535
+ <th class="is-light" colspan="3">
536
+ File
537
+ <code>sass/layout/footer.sass</code>
538
+ </th>
539
+ </tr>
540
+ <tr>
541
+ <th>Variable</th>
542
+ <th>From</th>
543
+ <th>To</th>
544
+ </tr>
545
+ <tr>
546
+ <td>
547
+ <code>$footer-background-color</code>
548
+ </td>
549
+ <td>
550
+ <code>$background</code>
551
+ </td>
552
+ <td>
553
+ <code>$white-bis</code>
554
+ </td>
555
+ </tr>
556
+ </tbody>
557
+ </table>
558
+
559
+ #### New variables
560
+
561
+ <table class="table is-bordered">
562
+ <tbody>
563
+ <tr>
564
+ <th class="is-light" colspan="2">
565
+ File
566
+ <code>sass/components/breadcrumb.sass</code>
567
+ </th>
568
+ </tr>
569
+ <tr>
570
+ <th>Name</th>
571
+ <th>Value</th>
572
+ </tr>
573
+ <tr>
574
+ <td>
575
+ <code>$breadcrumb-item-padding-vertical</code>
576
+ </td>
577
+ <td>
578
+ <code>0</code>
579
+ </td>
580
+ </tr>
581
+ <tr>
582
+ <td>
583
+ <code>$breadcrumb-item-padding-horizontal</code>
584
+ </td>
585
+ <td>
586
+ <code>0.75em</code>
587
+ </td>
588
+ </tr>
589
+ </tbody>
590
+ </table>
591
+
592
+ <table class="table is-bordered">
593
+ <tbody>
594
+ <tr>
595
+ <th class="is-light" colspan="2">
596
+ File
597
+ <code>sass/components/message.sass</code>
598
+ </th>
599
+ </tr>
600
+ <tr>
601
+ <th>Name</th>
602
+ <th>Value</th>
603
+ </tr>
604
+ <tr>
605
+ <td>
606
+ <code>$message-body-border-color</code>
607
+ </td>
608
+ <td>
609
+ <code>$border</code>
610
+ </td>
611
+ </tr>
612
+ <tr>
613
+ <td>
614
+ <code>$message-body-border-width</code>
615
+ </td>
616
+ <td>
617
+ <code>0 0 0 4px</code>
618
+ </td>
619
+ </tr>
620
+ <tr>
621
+ <td>
622
+ <code>$message-header-weight</code>
623
+ </td>
624
+ <td>
625
+ <code>$weight-bold</code>
626
+ </td>
627
+ </tr>
628
+ <tr>
629
+ <td>
630
+ <code>$message-header-body-border-width</code>
631
+ </td>
632
+ <td>
633
+ <code>0</code>
634
+ </td>
635
+ </tr>
636
+ </tbody>
637
+ </table>
638
+
639
+ <table class="table is-bordered">
640
+ <tbody>
641
+ <tr>
642
+ <th class="is-light" colspan="2">
643
+ File
644
+ <code>sass/components/navbar.sass</code>
645
+ </th>
646
+ </tr>
647
+ <tr>
648
+ <th>Name</th>
649
+ <th>Value</th>
650
+ </tr>
651
+ <tr>
652
+ <td>
653
+ <code>$navbar-box-shadow-size</code>
654
+ </td>
655
+ <td>
656
+ <code>0 2px 0 0</code>
657
+ </td>
658
+ </tr>
659
+ <tr>
660
+ <td>
661
+ <code>$navbar-box-shadow-color</code>
662
+ </td>
663
+ <td>
664
+ <code>$background</code>
665
+ </td>
666
+ </tr>
667
+ <tr>
668
+ <td>
669
+ <code>$navbar-padding-vertical</code>
670
+ </td>
671
+ <td>
672
+ <code>1rem</code>
673
+ </td>
674
+ </tr>
675
+ <tr>
676
+ <td>
677
+ <code>$navbar-padding-horizontal</code>
678
+ </td>
679
+ <td>
680
+ <code>2rem</code>
681
+ </td>
682
+ </tr>
683
+ <tr>
684
+ <td>
685
+ <code>$navbar-z</code>
686
+ </td>
687
+ <td>
688
+ <code>30</code>
689
+ </td>
690
+ </tr>
691
+ </tbody>
692
+ </table>
693
+
694
+ <table class="table is-bordered">
695
+ <tbody>
696
+ <tr>
697
+ <th class="is-light" colspan="2">
698
+ File
699
+ <code>sass/elements/title.sass</code>
700
+ </th>
701
+ </tr>
702
+ <tr>
703
+ <th>Name</th>
704
+ <th>Value</th>
705
+ </tr>
706
+ <tr>
707
+ <td>
708
+ <code>$title-line-height</code>
709
+ </td>
710
+ <td>
711
+ <code>1.125</code>
712
+ </td>
713
+ </tr>
714
+ <tr>
715
+ <td>
716
+ <code>$subtitle-line-height</code>
717
+ </td>
718
+ <td>
719
+ <code>1.25</code>
720
+ </td>
721
+ </tr>
722
+ <tr>
723
+ <td>
724
+ <code>$subtitle-negative-margin</code>
725
+ </td>
726
+ <td>
727
+ <code>-1.25rem</code>
728
+ </td>
729
+ </tr>
730
+ </tbody>
731
+ </table>
732
+
733
+ #### Removed variables
734
+
735
+ <table class="table is-bordered">
736
+ <tbody>
737
+ <tr>
738
+ <th>File</th>
739
+ <th>Removed</th>
740
+ <th>Replaced with</th>
741
+ </tr>
742
+ <tr>
743
+ <td>
744
+ <code>sass/components/message.sass</code>
745
+ </td>
746
+ <td>
747
+ <code>$message-body-border</code>
748
+ </td>
749
+ <td>
750
+ <code>$message-body-border-color</code>
751
+ <br>
752
+ <code>$message-body-border-width</code>
753
+ </td>
754
+ </tr>
755
+ </tbody>
756
+ </table>
757
+
758
+ ## 0.6.2
759
+
760
+ ### New features
761
+
762
+ * 🎉 Rounded buttons, inputs, pagination and toggle tabs
763
+
764
+ ### Improvements
765
+
766
+ * #1343 Add `sub` and `sup` title sizes
767
+ * #1452 New `.is-italic` helper
768
+
769
+ ### Bug fixes
770
+
771
+ * #935 Bug dropdown in `hero` (primary) menu items not visible
772
+ * #1456 Fix customize documentation
773
+ * #1190 Add `$variable-columns` to disable `--columnGap`
774
+ * #1518 Fix spacing of the delete button in notification element
775
+ * #1569 Fix missing use of `$pagination-color` variable
776
+
777
+ ## 0.6.1
778
+
779
+ ### New features
780
+
781
+ * 🎉 [List of buttons](https://bulma.io/documentation/elements/button/#list-of-buttons)
782
+ * 🎉 #1235 Support for five column grid: `.is-one-fifth, .is-two-fifths, .is-three-fifths, .is-four-fifths`
783
+ * 🎉 #1287 New `.is-invisible` helper
784
+ * 🎉 #1255 New `.is-expanded` modifier for `navbar-item`
785
+ * 🎉 #1384 New `.is-centered` and `.is-right` modifiers for `tags`
786
+ * 🎉 #1383 New `.is-empty` modifier for `file`
787
+ * 🎉 #1380 Allow `.is-selected` class on `<td>` and `<th>` tags
788
+
789
+ ### Improvements
790
+
791
+ * #987 Improve `tag > icon` spacing
792
+ * Improve `hamburger` alignment
793
+
794
+ ### Bug fixes
795
+
796
+ * #1358 Fix indentation bug for .is-one-fifth
797
+ * #1356 SASS 3.5+ variable parsing compatibility allows only #{}
798
+ * #1342 Remove black line from progress bar in IE
799
+ * #1334 Fix progress bar colors in IE
800
+ * #1313 Fix Table `is-selected` and `is-hoverable` styling issue
801
+ * #963 Fix Delete Button Bug in iOS Safari
802
+
803
+ ## 0.6.0
804
+
805
+ ### Breaking changes
806
+
807
+ * The new `$link` color is part of the `$colors` map. As a result, `.button.is-link` is a colored button now. Use `.button.is-text` if you want the underlined button.
808
+ * The deprecated `variables.sass` file has been removed.
809
+ * The deprecated `nav.sass` file has been removed.
810
+
811
+ ### New features
812
+
813
+ * #1236 `.table` hover effect is opt-in, by using the `.is-hoverable` modifier class
814
+ * #1254 `.dropdown` now supports `.is-up` modifier
815
+
816
+ ### Improvements
817
+
818
+ * #1257 Include placeholder mixin in `=input`
819
+
820
+ The `$link` color is used instead of `$primary` in the following components:
821
+
822
+ <table>
823
+ <tr>
824
+ <th>Variable</th>
825
+ <th>Old value</th>
826
+ <th>New value</th>
827
+ </tr>
828
+ <tr>
829
+ <td><code>$dropdown-item-active-color</code></td>
830
+ <td><code>$primary-invert</code></td>
831
+ <td><code>$link-invert</code></td>
832
+ </tr>
833
+ <tr>
834
+ <td><code>$dropdown-item-active-background-color</code></td>
835
+ <td><code>$primary</code></td>
836
+ <td><code>$link</code></td>
837
+ </tr>
838
+ <tr>
839
+ <td><code>$navbar-tab-hover-border-bottom-color</code></td>
840
+ <td><code>$primary</code></td>
841
+ <td><code>$link</code></td>
842
+ </tr>
843
+ <tr>
844
+ <td><code>$navbar-tab-active-color</code></td>
845
+ <td><code>$primary</code></td>
846
+ <td><code>$link</code></td>
847
+ </tr>
848
+ <tr>
849
+ <td><code>$navbar-tab-active-border-bottom-color</code></td>
850
+ <td><code>$primary</code></td>
851
+ <td><code>$link</code></td>
852
+ </tr>
853
+ <tr>
854
+ <td><code>$navbar-dropdown-item-active-color</code></td>
855
+ <td><code>$primary</code></td>
856
+ <td><code>$link</code></td>
857
+ </tr>
858
+ <tr>
859
+ <td><code>$tabs-link-active-border-bottom-color</code></td>
860
+ <td><code>$primary</code></td>
861
+ <td><code>$link</code></td>
862
+ </tr>
863
+ <tr>
864
+ <td><code>$tabs-link-active-color</code></td>
865
+ <td><code>$primary</code></td>
866
+ <td><code>$link</code></td>
867
+ </tr>
868
+ <tr>
869
+ <td><code>$tabs-toggle-link-active-background-color</code></td>
870
+ <td><code>$primary</code></td>
871
+ <td><code>$link</code></td>
872
+ </tr>
873
+ <tr>
874
+ <td><code>$tabs-toggle-link-active-border-color</code></td>
875
+ <td><code>$primary</code></td>
876
+ <td><code>$link</code></td>
877
+ </tr>
878
+ <tr>
879
+ <td><code>$tabs-toggle-link-active-color</code></td>
880
+ <td><code>$primary-invert</code></td>
881
+ <td><code>$link-invert</code></td>
882
+ </tr>
883
+ </table>
884
+
885
+ ### Issues closed
886
+
887
+ * #708 Import variables in mixins
888
+
889
+ ## 0.5.3
890
+
891
+ ### New features
892
+
893
+ * #1101 `.card-header-title` can be centered with `.is-centered`
894
+ * #1189 `.input` readonly and `.is-static`
895
+ * #1189 `.textarea` readonly
896
+
897
+ ### Issues closed
898
+
899
+ * #1177 Fix `.message .tag` combination
900
+ * #1167 Fix `pre code`
901
+ * #1207 Fix `.breadcrumb` alignment
902
+
903
+ ## 0.5.2
904
+
905
+ ### New features
906
+
907
+ * #842 `navbar` color modifiers
908
+ * #331 Support for third party icons
909
+ * Added `$button-focus-box-shadow-size` and `$button-focus-box-shadow-color` for customization
910
+ * Added `$input-focus-box-shadow-size` and `$input-focus-box-shadow-color` for customization
911
+ * Navbar tabs
912
+
913
+ ### Issues closed
914
+
915
+ * #1168 Undefined variable: `$navbar-item`
916
+ * #930 Remove `vertical-align: top` for icons
917
+ * #735 Font awesome custom `font-size`
918
+ * #395 Font awesome stacked icons
919
+ * #1152 Level-items not centered horizontally on mobile
920
+ * #1147 Add `text-size-adjust: 100%` to `html`
921
+ * #1106 `pagination` docs
922
+ * #1063 `$family-primary` customization
923
+
924
+ ## 0.5.1
925
+
926
+ ### New features
927
+
928
+ * 🎉 #280 [File upload element](https://bulma.io/documentation/form/file/)
929
+ * `$container-offset` variable to determine the `.container` breakpoints
930
+ * #1001 Text case helpers
931
+
932
+ ### Issues closed
933
+
934
+ * #1030 Add `!important` to non responsive display helpers
935
+ * #1020 Customizing `.navbar-item img` max height
936
+ * #998 `.navbar-dropdown` with **right** alignment
937
+ * #877 `.pagination` isn't using `$pagination-background`
938
+ * #989 `navbar-brand` overflowing on mobile
939
+ * #975 Variable `$table-head-color` isn't used
940
+ * #964 Tabs sass file throwing error with `!important`
941
+ * #949 `.is-size-7` helper is missing
942
+
943
+ ## 0.5.0
944
+
945
+ ### New features
946
+
947
+ * 🎉 [List of tags](https://bulma.io/documentation/elements/tag/#list-of-tags)
948
+ * New **variable naming system**: `component`-`subcomponent`-`state`-`property`
949
+ * Improved **customization** thanks to new set of variables
950
+ * #934 New `.is-shadowless` helper
951
+
952
+ Variable name changes (mostly appending `-color`):
953
+
954
+ <table>
955
+ <tr><th>From</th><th>To</th></tr>
956
+ <tr><td><code>$card</code></td><td><code>$card-color</code></td></tr>
957
+ <tr><td><code>$card-background</code></td><td><code>$card-background-color</code></td></tr>
958
+ <tr><td><code>$card-header</code></td><td><code>$card-header-color</code></td></tr>
959
+ <tr><td><code>$dropdown-item</code></td><td><code>$dropdown-item-color</code></td></tr>
960
+ <tr><td><code>$dropdown-content-background</code></td><td><code>$dropdown-content-background-color</code></td></tr>
961
+ <tr><td><code>$dropdown-item-hover-background</code></td><td><code>$dropdown-item-hover-background-color</code></td></tr>
962
+ <tr><td><code>$dropdown-item-hover</code></td><td><code>$dropdown-item-hover-color</code></td></tr>
963
+ <tr><td><code>$dropdown-item-active-background</code></td><td><code>$dropdown-item-active-background-color</code></td></tr>
964
+ <tr><td><code>$dropdown-item-active</code></td><td><code>$dropdown-item-active-color</code></td></tr>
965
+ <tr><td><code>$dropdown-divider-background</code></td><td><code>$dropdown-divider-background-color</code></td></tr>
966
+ <tr><td><code>$menu-item</code></td><td><code>$menu-item-color</code></td></tr>
967
+ <tr><td><code>$menu-item-hover</code></td><td><code>$menu-item-hover-color</code></td></tr>
968
+ <tr><td><code>$menu-item-hover-background</code></td><td><code>$menu-item-hover-background-color</code></td></tr>
969
+ <tr><td><code>$menu-item-active</code></td><td><code>$menu-item-active-color</code></td></tr>
970
+ <tr><td><code>$menu-item-active-background</code></td><td><code>$menu-item-active-background-color</code></td></tr>
971
+ <tr><td><code>$menu-label</code></td><td><code>$menu-label-color</code></td></tr>
972
+ <tr><td><code>$message-background</code></td><td><code>$message-background-color</code></td></tr>
973
+ <tr><td><code>$message-header-background</code></td><td><code>$message-header-background-color</code></td></tr>
974
+ <tr><td><code>$navbar-background</code></td><td><code>$navbar-background-color</code></td></tr>
975
+ <tr><td><code>$navbar-item</code></td><td><code>$navbar-item-color</code></td></tr>
976
+ <tr><td><code>$navbar-item-hover</code></td><td><code>$navbar-item-hover-color</code></td></tr>
977
+ <tr><td><code>$navbar-item-hover-background</code></td><td><code>$navbar-item-hover-background-color</code></td></tr>
978
+ <tr><td><code>$navbar-item-active</code></td><td><code>$navbar-item-active-color</code></td></tr>
979
+ <tr><td><code>$navbar-item-active-background</code></td><td><code>$navbar-item-active-background-color</code></td></tr>
980
+ <tr><td><code>$navbar-tab-hover-background</code></td><td><code>$navbar-tab-hover-background-color</code></td></tr>
981
+ <tr><td><code>$navbar-tab-hover-border-bottom</code></td><td><code>$navbar-tab-hover-border-bottom-color</code></td></tr>
982
+ <tr><td><code>$navbar-tab-active</code></td><td><code>$navbar-tab-active-color</code></td></tr>
983
+ <tr><td><code>$navbar-tab-active-background</code></td><td><code>$navbar-tab-active-background-color</code></td></tr>
984
+ <tr><td><code>$navbar-divider-background</code></td><td><code>$navbar-divider-background-color</code></td></tr>
985
+ <tr><td><code>$navbar-dropdown-item-hover</code></td><td><code>$navbar-dropdown-item-hover-color</code></td></tr>
986
+ <tr><td><code>$navbar-dropdown-item-hover-background</code></td><td><code>$navbar-dropdown-item-hover-background-color</code></td></tr>
987
+ <tr><td><code>$navbar-dropdown-item-active</code></td><td><code>$navbar-dropdown-item-active-color</code></td></tr>
988
+ <tr><td><code>$navbar-dropdown-item-active-background</code></td><td><code>$navbar-dropdown-item-active-background-color</code></td></tr>
989
+ <tr><td><code>$pagination</code></td><td><code>$pagination-color</code></td></tr>
990
+ <tr><td><code>$pagination-hover</code></td><td><code>$pagination-hover-color</code></td></tr>
991
+ <tr><td><code>$pagination-hover-border</code></td><td><code>$pagination-hover-border-color</code></td></tr>
992
+ <tr><td><code>$pagination-focus</code></td><td><code>$pagination-focus-color</code></td></tr>
993
+ <tr><td><code>$pagination-focus-border</code></td><td><code>$pagination-focus-border-color</code></td></tr>
994
+ <tr><td><code>$pagination-active</code></td><td><code>$pagination-active-color</code></td></tr>
995
+ <tr><td><code>$pagination-active-border</code></td><td><code>$pagination-active-border-color</code></td></tr>
996
+ <tr><td><code>$pagination-disabled</code></td><td><code>$pagination-disabled-color</code></td></tr>
997
+ <tr><td><code>$pagination-disabled-background</code></td><td><code>$pagination-disabled-background-color</code></td></tr>
998
+ <tr><td><code>$pagination-disabled-border</code></td><td><code>$pagination-disabled-border-color</code></td></tr>
999
+ <tr><td><code>$pagination-current</code></td><td><code>$pagination-current-color</code></td></tr>
1000
+ <tr><td><code>$pagination-current-background</code></td><td><code>$pagination-current-background-color</code></td></tr>
1001
+ <tr><td><code>$pagination-current-border</code></td><td><code>$pagination-current-border-color</code></td></tr>
1002
+ <tr><td><code>$pagination-ellipsis</code></td><td><code>$pagination-ellipsis-color</code></td></tr>
1003
+ <tr><td><code>$box</code></td><td><code>$box-color</code></td></tr>
1004
+ <tr><td><code>$box-background</code></td><td><code>$box-background-color</code></td></tr>
1005
+ <tr><td><code>$button</code></td><td><code>$button-color</code></td></tr>
1006
+ <tr><td><code>$button-background</code></td><td><code>$button-background-color</code></td></tr>
1007
+ <tr><td><code>$button-border</code></td><td><code>$button-border-color</code></td></tr>
1008
+ <tr><td><code>$button-link</code></td><td><code>$button-link-color</code></td></tr>
1009
+ <tr><td><code>$button-link-hover-background</code></td><td><code>$button-link-hover-background-color</code></td></tr>
1010
+ <tr><td><code>$button-link-hover</code></td><td><code>$button-link-hover-color</code></td></tr>
1011
+ <tr><td><code>$button-disabled-background</code></td><td><code>$button-disabled-background-color</code></td></tr>
1012
+ <tr><td><code>$button-disabled-border</code></td><td><code>$button-disabled-border-color</code></td></tr>
1013
+ <tr><td><code>$button-static</code></td><td><code>$button-static-color</code></td></tr>
1014
+ <tr><td><code>$button-static-background</code></td><td><code>$button-static-background-color</code></td></tr>
1015
+ <tr><td><code>$button-static-border</code></td><td><code>$button-static-border-color</code></td></tr>
1016
+ <tr><td><code>$input</code></td><td><code>$input-color</code></td></tr>
1017
+ <tr><td><code>$input-background</code></td><td><code>$input-background-color</code></td></tr>
1018
+ <tr><td><code>$input-border</code></td><td><code>$input-border-color</code></td></tr>
1019
+ <tr><td><code>$input-hover</code></td><td><code>$input-hover-color</code></td></tr>
1020
+ <tr><td><code>$input-hover-border</code></td><td><code>$input-hover-border-color</code></td></tr>
1021
+ <tr><td><code>$input-focus</code></td><td><code>$input-focus-color</code></td></tr>
1022
+ <tr><td><code>$input-focus-border</code></td><td><code>$input-focus-border-color</code></td></tr>
1023
+ <tr><td><code>$input-disabled</code></td><td><code>$input-disabled-color</code></td></tr>
1024
+ <tr><td><code>$input-disabled-background</code></td><td><code>$input-disabled-background-color</code></td></tr>
1025
+ <tr><td><code>$input-disabled-border</code></td><td><code>$input-disabled-border-color</code></td></tr>
1026
+ <tr><td><code>$input-icon</code></td><td><code>$input-icon-color</code></td></tr>
1027
+ <tr><td><code>$input-icon-active</code></td><td><code>$input-icon-active-color</code></td></tr>
1028
+ <tr><td><code>$title</code></td><td><code>$title-color</code></td></tr>
1029
+ <tr><td><code>$subtitle</code></td><td><code>$subtitle-color</code></td></tr>
1030
+ <tr><td><code>$card-footer-border</code></td><td><code>$card-footer-border-top</code></td></tr>
1031
+ <tr><td><code>$menu-list-border</code></td><td><code>$menu-list-border-left</code></td></tr>
1032
+ <tr><td><code>$navbar-tab-hover-border</code></td><td><code>$navbar-tab-hover-border-bottom-color</code></td></tr>
1033
+ <tr><td><code>$navbar-tab-active-border</code></td><td><code>$navbar-tab-active-border-bottom</code></td></tr>
1034
+ <tr><td><code>$table-border</code></td><td><code>$table-cell-border</code></td></tr>
1035
+ <tr><td><code>$table-row-even-background</code></td><td><code>$table-striped-row-even-background-color</code></td></tr>
1036
+ <tr><td><code>$table-row-even-hover-background</code></td><td><code>$table-striped-row-even-hover-background-color</code></td></tr>
1037
+ </table>
1038
+
1039
+ ### Improved documentation
1040
+
1041
+ * [Starter template](https://bulma.io/documentation/overview/start/#starter-template)
1042
+ * [Colors page](https://bulma.io/documentation/overview/colors/)
1043
+ * [Typography helpers](https://bulma.io/documentation/modifiers/typography-helpers/)
1044
+ * **Meta** information for all elements and components
1045
+ * **Variables** information for most elements and components
1046
+
1047
+ ### Issues closed
1048
+
1049
+ * #909 `.dropdown` wrapping
1050
+ * #938 `.is-fullwidth` removed from docs
1051
+ * #900 Variable `.navbar-item` for hover+active background/color
1052
+ * #902 `.navbar-item` color overrides
1053
+
1054
+ ## 0.4.4
1055
+
1056
+ ### New features
1057
+
1058
+ * New [dropdown button](https://bulma.io/documentation/components/dropdown/)!
1059
+ * The breakpoints and `.container` **gap** can be customized with the new `$gap` variable
1060
+ * The `.container` has 2 new modifiers: `.is-widescreen` and `.is-fullhd`
1061
+
1062
+ ### Issues closed
1063
+
1064
+ * Fix #26 `.textarea` element will honors `[rows]` attribute
1065
+ * Fix #887 `body` scrollbar
1066
+ * Fix #715 `.help` class behaviour in horizontal form `is-grouped` field
1067
+ * Fix #842 Adding modifiers in `navbar`
1068
+ * Fix #841 `.container` as direct child of `.navbar` moves `.navbar-menu` below `.navbar-brand`
1069
+ * Fix #861 Box in hero as text and background white
1070
+ * Fix #852 charset and version number
1071
+ * Fix #856 JavaScript `.nav-burger` example
1072
+ * Fix #821 Notification strong color
1073
+
1074
+ ## 0.4.3
1075
+
1076
+ ### New features
1077
+
1078
+ * New navbar with dropdown support
1079
+ * Add new feature: Breadcrumb component (#632) @vinialbano
1080
+ * Add Bloomer to README.md (#787) @AlgusDark
1081
+ * Add responsive is-*-touch tags for .column sizes (#780) @tom-rb
1082
+ * Adding 'is-hidden' to helpers in docs (#798) @aheuermann
1083
+ * Add figure/figcaption as content element (#807) @werthen
1084
+ * Add <sup> and <sub> support to content (#808) @werthen
1085
+ * Add re-bulma and react-bulma (#809) @kulakowka
1086
+ * Add is-halfheight to hero (#783) @felipeas
1087
+ * Added a related project with Golang backend (#784) @Caiyeon
1088
+
1089
+ ### Issues closed
1090
+
1091
+ * Fix #827 Breadcrumb and Navbar in docs
1092
+ * Fix #824 Code examples broken because of `text-align: center`
1093
+ * Fix #820 Loading spinner resizes with controls
1094
+ * Fix #819 Remove `height: auto` from media elements
1095
+ * Fix #790 Documentation typo
1096
+ * Fix #814 Make use of +fullhd mixin for columns @Saboteur777
1097
+ * Fix #781 Add min/max height/width to delete class size modifiers @ZackWard
1098
+ * Fix #391 Section docs update
1099
+
1100
+ ## 0.4.2
1101
+
1102
+ * Fix #728 selected row on striped table
1103
+ * Fix #747 remove flex-shrink for is-expanded
1104
+ * Fix #702 add icons support for select dropdown
1105
+ * Fix #712 delete button as flexbox item
1106
+ * Fix #759 static button
1107
+
1108
+ ## 0.4.1
1109
+
1110
+ * Fix #568 max-width container
1111
+ * Fix #589 notification delete
1112
+ * Fix #272 nav-right without nav-menu
1113
+ * Fix #616 hero and notification buttons
1114
+ * Fix #607 has-addons z-index
1115
+ * Feature #586 select color modifiers
1116
+ * Fix #537 -ms-expand
1117
+ * Fix #578 better `+center` mixin
1118
+ * Fix #565 `dl` styles
1119
+ * Fix #389 `pre` `margin-bottom`
1120
+ * Fix #484 icon alignment
1121
+ * Fix #506 bold nav menu
1122
+ * Fix #581 nav container
1123
+ * Fix #512 nav grouped buttons
1124
+ * Fix #605 container example
1125
+ * Fix #458 select expanded
1126
+ * Fix #403 separate animations
1127
+ * Fix #637 customize Bulma
1128
+ * Fix #584 loading select
1129
+ * Fix #571 control height
1130
+ * Fix #634 is-grouped control
1131
+ * Fix #676 checkbox/radio wrapping
1132
+ * Feature #479 has-icons placement
1133
+ * Fix #442 selected table row
1134
+ * Fix #187 add customize page
1135
+ * Fix #449 columns negative horizontal margin
1136
+ * Fix #399 pagination wrapping
1137
+ * Fix #227 color keys as strings
1138
+
1139
+ ## 0.4.0
1140
+
1141
+ * **Default font-size is 16px**
1142
+ * **New `.field` element ; `.control` repurposed**
1143
+ * **New `.pagination` sizes**
1144
+ * **New `$fullhd` breakpoint (1344px)**
1145
+
1146
+ * Remove monospace named fonts
1147
+ * Remove icon spacing logic
1148
+ * Split icon container dimensions and icon size
1149
+ * Fix delete button by using pixels instead of (r)em
1150
+ * Fix level on mobile
1151
+ * Add new `.is-spaced` modifier for titles and subtitles
1152
+
1153
+ * Fix #487
1154
+ * Fix #489
1155
+ * Fix #502
1156
+ * Fix #514
1157
+ * Fix #524
1158
+ * Fix #536
1159
+
1160
+ ## 0.3.2
1161
+
1162
+ * Fix #478
1163
+
1164
+ ## 0.3.1
1165
+
1166
+ * Fix #441
1167
+ * Fix #443
1168
+
1169
+ ## 0.3.0
1170
+
1171
+ * Use `rem` and `em` (!)
1172
+ * Fix Font Awesome icons in buttons (!)
1173
+ * Fix message colors (!)
1174
+ * Use `{% capture %}` to ensure same display as code snippet (!)
1175
+
1176
+ * Move variables to their own file
1177
+ * Remove small tag
1178
+ * Add `:focus` state
1179
+ * Fix table
1180
+ * Remove table `.is-icon` and `.is-link`
1181
+ * Add `.content` table
1182
+ * Fix inputs with icons
1183
+ * Input icons require the `.icon` container
1184
+ * Deprecate `.media-number`
1185
+ * Fix `.level-item` height
1186
+ * Fix `.menu` spacing
1187
+ * Deprecate `.menu-nav`
1188
+ * Add invert outlined buttons
1189
+ * Fix `.nav`
1190
+ * Fix `.pagination`
1191
+ * Fix `.tabs`
1192
+ * Fix `.panel`
1193
+ * Fix `.delete`
1194
+ * Add mixins documentation
1195
+ * Add functions documentation
1196
+
1197
+ ## 0.2.2
1198
+
1199
+ * Fix: remove multiple imports
1200
+
1201
+ ## 0.2.1
1202
+
1203
+ * Fix: container flex
1204
+ * Fix: nav-item flex
1205
+ * Fix: media-number flex
1206
+ * Fix: new brand colors
1207
+
1208
+ ## 0.2.0
1209
+
1210
+ * Added: new branding
1211
+ * Added: modularity
1212
+ * Added: grid folder
1213
+ * Added: .github folder
1214
+
1215
+ ## 0.1.1
1216
+
1217
+ * Remove `flex: 1` shorthand
1218
+
1219
+ ## 0.1.0
1220
+
1221
+ * Fix #227
1222
+ * Fix #232
1223
+ * Fix #242
1224
+ * Fix #243
1225
+ * Fix #228
1226
+ * Fix #245
1227
+ * Fix #246
1228
+
1229
+ ## 0.0.28
1230
+
1231
+ * BREAKING: `.control.is-grouped` now uses `.control` elements as direct children
1232
+ * Fix #220
1233
+ * Fix #214
1234
+ * Fix #210
1235
+ * Fix #206
1236
+ * Fix #122
1237
+
1238
+ ## 0.0.27
1239
+
1240
+ * Fix: #217
1241
+ * Fix: #213
1242
+ * Fix: #209
1243
+ * Fix: #205
1244
+ * Fix: #204
1245
+ * Fix: #81
1246
+
1247
+ ## 0.0.26
1248
+
1249
+ * Added: `.modal-card`
1250
+ * Added: display responsive utilities
1251
+ * Added: `.nav-center`
1252
+ * Added: `.tabs ul` left center right
1253
+ * Changed: `.navbar` renamed to `.level`
1254
+ * Changed: `.header` renamed to `.nav`
1255
+ * Deprecated: `.header`
1256
+ * Deprecated: `.navbar`
1257
+ * Fixed: `.hero` layout
1258
+
1259
+ ## 0.0.25
1260
+
1261
+ * Added: `utilities/controls.sass` and `elements/form.sass`
1262
+ * Added: new responsive classes
1263
+ * Added: white/black and light/dark colors
1264
+ * Changed: `.tabs` need `.icon` now
1265
+ * Changed: cdnjs link doesn't include version
1266
+
1267
+ ## 0.0.24
1268
+
1269
+ ### Added
1270
+
1271
+ * `is-mobile` for the navbar
1272
+
1273
+ ### Removed
1274
+
1275
+ * removed border between sections. Use `<hr class="is-marginless">` now
1276
+
1277
+ ### Updated
1278
+
1279
+ * restructured files
1280
+ * added back `inline-flex` for controls and tags
1281
+
1282
+ ### Removed
1283
+
1284
+ * test tiles
1285
+
1286
+ ## 0.0.23
1287
+
1288
+ ### BREAKING
1289
+
1290
+ * `bulma` folder renamed to `sass` to avoid the redundant `bulma/bulma` path
1291
+ * `variables.sass` moved to `/utilities`
1292
+ * almost everything is singular now
1293
+ * **elements** only have one class
1294
+ * **components** have at least one sub-class
1295
+ * `.content` moved to elements
1296
+ * `.table` moved to elements
1297
+ * `.message` moved to components
1298
+ * `.table-icon`, `.table-link`, `.table-narrow` are now called `.is-icon`, `.is-link`, `.is-narrow`
1299
+
1300
+ ### Added
1301
+
1302
+ * all variables are now `!default` so you can set your custom variables before importing Bulma
1303
+
1304
+ ## 0.0.22
1305
+
1306
+ ### Fixed
1307
+
1308
+ * links in hero subtitle
1309
+
1310
+ ## 0.0.21
1311
+
1312
+ ### Added
1313
+
1314
+ * `.column.is-narrow` to make a column `flex: none`
1315
+
1316
+ ## 0.0.20
1317
+
1318
+ ### Added
1319
+
1320
+ * `.has-icon` support for different `.input` sizes
1321
+
1322
+ ## 0.0.19
1323
+
1324
+ ### NEW!!!
1325
+
1326
+ * `.tile`
1327
+
1328
+ ### BREAKING
1329
+
1330
+ * `.is-third` renamed to `.is-one-third`
1331
+ * `.is-quarter` renamed to `.is-one-quarter`
1332
+
1333
+ ### Added
1334
+
1335
+ * `.is-two-thirds`
1336
+ * `.is-three-quarters`
1337
+
1338
+ ### Changed
1339
+
1340
+ * `.delete` in `.tag` has no red
1341
+
1342
+ ## 0.0.18
1343
+
1344
+ ### BREAKING
1345
+
1346
+ * `.is-text-*` renamed to `.has-text-*`
1347
+ * removed `.is-fullwidth` helper
1348
+
1349
+ ### Added
1350
+
1351
+ * **small tag**: `.tag.is-small`
1352
+ * 12th column classes
1353
+ * `*-full` column classes
1354
+ * `$family-code`
1355
+
1356
+ ### Fixed
1357
+
1358
+ * disabled input with element
1359
+ * `.table` last row with `th`
1360
+ * `.card` color in `.hero`
1361
+ * `.columns.is-gapless`
1362
+
1363
+ ### Removed
1364
+
1365
+ * removed `box-shadow` from `.tag`
1366
+ * custom checkboxes and radio buttons
1367
+
1368
+ ### Updated
1369
+
1370
+ * `.tag` uses `display: inline-flex` now
1371
+
1372
+ ## 0.0.17
1373
+
1374
+ ### Added
1375
+
1376
+ * **pagination**: `.pagination`
1377
+ * **horizontal forms**: `.control.is-horizontal`
1378
+ * **help** text for form controls: `.help`
1379
+ * **progress bars**: `.progress`
1380
+
1381
+ ### Updated
1382
+
1383
+ * `.button` uses `display: inline-flex` now
1384
+ * `.button` needs an `.icon` now
1385
+ * `.control.is-grouped` renamed to `.control.has-addons`
1386
+ * `.control.is-inline` renamed to `.control.is-grouped`
1387
+
1388
+ ### Removed
1389
+
1390
+ * **helpers** `.is-inline` and `.is-block`