mere-blog-theme 0.5 → 1.0.1

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