mere-blog-theme 0.4 → 1.0

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