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