migration.md 15 KB
Newer Older
1
---
Mark Otto's avatar
Mark Otto committed
2
layout: docs
Mark Otto's avatar
Mark Otto committed
3
title: Migrating to v4
4
group: migration
5
6
---

7
8
Bootstrap 4 is a major rewrite of almost the entire project. The most notable changes are summarized immediately below, followed by more specific class and behavioral changes to relevant components.

Mark Otto's avatar
Mark Otto committed
9
10
11
12
{% callout info %}
**Heads up!** This will be in flux as work on the v4 alphas progresses. Until then consider it incomplete, and we'd love pull requests to help keep it up to date.
{% endcallout %}

Mark Otto's avatar
Mark Otto committed
13
## Summary
14

15
Here are the big ticket items you'll want to be aware of when moving from v3 to v4.
16

Mark Otto's avatar
Mark Otto committed
17
18
### Browser support

19
- Dropped IE8 and iOS 6 support. v4 is now only IE9+ and iOS 7+. For sites needing either of those, use v3.
20
- Added official support for Android v5.0 Lollipop's Browser and WebView. Earlier versions of the Android Browser and WebView remain only unofficially supported.
Mark Otto's avatar
Mark Otto committed
21
22
23

### Global changes

24
- Switched from [Less](http://lesscss.org/) to [Sass](http://sass-lang.com/) for our source CSS files.
25
- Switched from `px` to `rem` as our primary CSS unit, though pixels are still used for media queries and grid behavior as viewports are not affected by type size.
26
27
- Global font-size increased from `14px` to `16px`.
- Added a new grid tier for ~`480px` and below.
28
- Replaced the separate optional theme with configurable options via SCSS variables (e.g., `$enable-gradients: true`).
Mark Otto's avatar
Mark Otto committed
29

30
31
32
33
34
35
36
### Grid system

- Added support for flexbox (set `$enable-flex: true` and recompile) in the grid mixins and predefined classes.
- As part of flexbox, included support for vertical and horizontal alignment classes.
- Overhauled grid mixins to merge `make-col-span` into `make-col` for a singular mixin.
- Added a new `sm` grid tier below `768px` for more granular control. We now have `xs`, `sm`, `md`, `lg`, and `xl`. This also means every tier has been bumped up one level (so `.col-md-6` in v3 is now `.col-lg-6` in v4).
- Changed grid system media query breakpoints and container widths to account for new grid tier and ensure columns are evenly divisible by `12` at their max width.
37
- Grid breakpoints and container widths are now handled via Sass maps (`$grid-breakpoints` and `$container-max-widths`) instead of a handful of separate variables. These replace the `@screen-*` variables entirely and allow you to fully customize the grid tiers.
Mark Otto's avatar
Mark Otto committed
38
- Media queries have also changed. Instead of repeating our media query declarations with the same value each time, we now have `@include media-breakpoint-up/down/only`. Now, instead of writing `@media (min-width: @screen-sm-min) { ... }`, you can write `@include media-breakpoint-up(sm) { ... }`.
39

Mark Otto's avatar
Mark Otto committed
40
41
42
### Components

- Dropped panels, thumbnails, and wells for a new all-encompassing component, cards.
43
44
45
46
- Dropped the Glyphicons icon font. If you need icons, some options are:
  - the upstream version of [Glyphicons](http://glyphicons.com/)
  - [Octicons](https://octicons.github.com/)
  - [Font Awesome](https://fortawesome.github.io/Font-Awesome/)
47
- Dropped the Affix jQuery plugin. We recommend using a `position: sticky` polyfill instead. [See the HTML5 Please entry](http://html5please.com/#sticky) for details and specific polyfill recommendations.
48
  - If you were using Affix to apply additional, non-`position` styles, the polyfills might not support your use case. One option for such uses is the third-party [ScrollPos-Styler](https://github.com/acch/scrollpos-styler) library.
Mark Otto's avatar
Mark Otto committed
49
50
- Dropped the pager component as it was essentially slightly customized buttons.
- Refactored nearly all components to use more un-nested classes instead of children selectors.
Mark Otto's avatar
Mark Otto committed
51
52

### Misc
53
- Non-responsive usage of Bootstrap is no longer supported.
Mark Otto's avatar
Mark Otto committed
54
- Dropped the online Customizer in favor of more extensive setup documentation and customized builds.
55

56
## By component
57

Mark Otto's avatar
Mark Otto committed
58
59
60
61
62
63
64
65
66
This list highlights key changes by component between v3.x.x and v4.0.0.

### Reboot

New to Bootstrap 4 is the Reboot, a new stylesheet that builds on Normalize with our own somewhat opinionated reset styles. Selectors appearing in this file only use elements—there are no classes here. This isolates our reset styles from our component styles for a more modular approach. Some of the most important resets this includes are the `box-sizing: border` change, moving from `rem` to `em` units on many elements, link styles, and many form element resets.

### Typography

- Moved all `.text-` utilities to the `_utilities.scss` file.
67
- Dropped `.page-header` as, aside from the border, all it's styles can be applied via utilities.
68
- `.dl-horizontal` has been dropped. Instead, use `.row` on `<dl>` and use grid column classes (or mixins) on its `<dt>` and `<dd>` children.
Mark Otto's avatar
Mark Otto committed
69
- Custom `<blockquote>` styling has moved to classes—`.blockquote` and the `.blockquote-reverse` modifier.
70

71
72
73
74
### Images

- Renamed `.img-responsive` to `.img-fluid`.

75
76
77
78
### Tables

- Nearly all instances of the `>` selector have been removed, meaning nested tables will now automatically inherit styles from their parents. This greatly simplifies our selectors and potential customizations.
- Responsive tables no longer require a wrapping element. Instead, just put the `.table-responsive` right on the `<table>`.
Mark Otto's avatar
Mark Otto committed
79
- Renamed `.table-condensed` to `.table-sm` for consistency.
80
- Added a new `.table-inverse` option.
81
- Added a new `.table-reflow` option.
82
- Added table header modifiers: `.thead-default` and `.thead-inverse`
83

Mark Otto's avatar
Mark Otto committed
84
85
86
### Forms

- Moved element resets to the `_reboot.scss` file.
87
- Renamed `.control-label` to `.form-control-label`.
Mark Otto's avatar
Mark Otto committed
88
89
- Renamed `.input-lg` and `.input-sm` to `.form-control-lg` and `.form-control-sm`, respectively.
- Dropped `.form-group-*` classes for simplicity's sake. Use `.form-control-*` classes instead now.
90
- Dropped `.help-block`; superseded by the `.text-muted` utility class to reduce duplicate code.
91
92
- Horizontal forms overhauled:
  - Dropped the `.form-horizontal` class requirement.
93
  - `.form-group` no longer applies styles from the `.row` via mixin, so `.row` is now required for horizontal grid layouts (e.g., `<div class="form-group row">`).
94
  - Added new `.form-control-label` class to vertically center labels with `.form-control`s.
Mark Otto's avatar
Mark Otto committed
95

96
97
### Buttons

98
- Renamed `.btn-default` to `.btn-secondary`.
99
- Dropped the `.btn-xs` class entirely as `.btn-sm` is proportionally much smaller than v3's.
100
101
- The [stateful button](http://getbootstrap.com/javascript/#buttons-methods) feature of the `button.js` jQuery plugin has been dropped. This includes the `$().button(string)` and `$().button('reset')` methods. We advise using a tiny bit of custom JavaScript instead, which will have the benefit of behaving exactly the way you want it to.
  - Note that the other features of the plugin (button checkboxes, button radios, single-toggle buttons) have been retained in v4.
102

103
104
### Button group

105
- Dropped the `.btn-group-xs` class entirely given removal of `.btn-xs`.
106

107
108
109
110
111
112
113
114
### Dropdowns

- Switched from parent selectors to singular classes for all components, modifiers, etc.
- Dropdowns can be built with `<div>`s or `<ul>`s now.
- Rebuilt dropdown styles and markup to provide easy, built-in support for `<a>` and `<button>` based dropdown items.
- Dropdown items now require `.dropdown-item`.
- Dropdown toggles no longer require an explicit `<span class="caret"></span>`; this is now provided automatically via CSS's `::after` on `.dropdown-toggle`.

115
116
117
118
### Grid system

- Added a new `~480px` grid breakpoint, meaning there are now five total tiers.

Mark Otto's avatar
Mark Otto committed
119
120
121
122
123
### Navs

- Dropped nearly all `>` selectors for simpler styling via un-nested classes.
- Instead of HTML-specific selectors like `.nav > li > a`, we use separate classes for `.nav`s, `.nav-item`s, and `.nav-link`s. This makes your HTML more flexible while bringing along increased extensibility.

124
### Navbar
125
126
127

- Dropped the `.navbar-form` class entirely. It's no longer necessary.

128
129
130
### Pagination

- Explicit classes (`.page-item`, `.page-link`) are now required on the descendants of `.pagination`s
Mark Otto's avatar
Mark Otto committed
131
- Dropped the `.pager` component entirely as it was little more than customized outline buttons.
132

133
134
135
136
### Breadcrumbs

- An explicit class, `.breadcrumb-item`, is now required on the descendants of `.breadcrumb`s

Mark Otto's avatar
Mark Otto committed
137
### Labels and badges
138

Mark Otto's avatar
Mark Otto committed
139
140
- Renamed `.label` to `.tag` to disambiguate from the `<label>` element.
- Dropped the badge component. Use the `.tag-pill` modifier together with the label component instead.
141

Mark Otto's avatar
Mark Otto committed
142
143
144
### Panels, thumbnails, and wells

Dropped entirely for the new card component.
145

146
147
148
149
150
#### Panels

- `.panel` to `.card`
- `.panel-default` removed and no replacement
- `.panel-heading` to `.card-header`
151
- `.panel-title` to `.card-header`. Depending on the desired look, you may also want to use [heading elements or classes]({{ site.baseurl }}/content/typography/#headings) (e.g. `<h3>`, `.h3`) or bold elements or classes (e.g. `<strong>`, `<b>`, [`.font-weight-bold`]({{ site.baseurl }}/components/utilities/#font-weight-and-italics)). Note that `.card-title`, while similarly named, produces a different look than `.panel-title`.
152
153
- `.panel-body` to `.card-block`
- `.panel-footer` to `.card-footer`
154
155
156
157
158
- `.panel-primary` to `.card-primary` and `.card-inverse` (or use `.bg-primary` on `.card-header`)
- `.panel-success` to `.card-success` and `.card-inverse` (or use `.bg-success` on `.card-header`)
- `.panel-info` to `.card-info` and `.card-inverse` (or use `.bg-info` on `.card-header`)
- `.panel-warning` to `.card-warning` and `.card-inverse` (or use `.bg-warning` on `.card-header`)
- `.panel-danger` to `.card-danger` and `.card-inverse` (or use `.bg-danger` on `.card-header`)
159

160
161
### Carousel

Mark Otto's avatar
Mark Otto committed
162
- Renamed `.item` to `.carousel-item`.
163

164
165
### Utilities

166
167
- Added `.pull-{xs,sm,md,lg,xl}-{left,right,none}` classes for responsive floats and removed `.pull-left` and `.pull-right` since they're redundant to `.pull-xs-left` and `.pull-xs-right`.
- Added responsive variations to our text alignment classes `.text-{xs,sm,md,lg,xl}-{left,center,right}` and removed the redundant `.text-{left,center,right}` utilities as they are the same as the `xs` variation.
Mark Otto's avatar
Mark Otto committed
168
- Dropped `.center-block` for the new `.m-x-auto` class.
169

170
171
172
173
174
### Vendor prefix mixins
Bootstrap 3's [vendor prefix](http://webdesign.about.com/od/css/a/css-vendor-prefixes.htm) mixins, which were deprecated in v3.2.0, have been removed in Bootstrap 4. Since we use [Autoprefixer](https://github.com/postcss/autoprefixer), they're no longer necessary.

Removed the following mixins: `animation`, `animation-delay`, `animation-direction`, `animation-duration`, `animation-fill-mode`, `animation-iteration-count`, `animation-name`, `animation-timing-function`, `backface-visibility`, `box-sizing`, `content-columns`, `hyphens`, `opacity`, `perspective`, `perspective-origin`, `rotate`, `rotateX`, `rotateY`, `scale`, `scaleX`, `scaleY`, `skew`, `transform-origin`, `transition-delay`, `transition-duration`, `transition-property`, `transition-timing-function`, `transition-transform`, `translate`, `translate3d`, `user-select`

175
176
## Documentation

Mark Otto's avatar
Mark Otto committed
177
Our documentation received an upgrade across the board as well. Here's the low down:
178

Mark Otto's avatar
Mark Otto committed
179
180
181
- We're still using Jekyll, but we have custom plugins in the mix:
  - `example.rb` is a fork of the default `highlight.rb` plugin, allowing for easier example-code handling.
  - `callout.rb` is a similar fork of that, but designed for our special docs callouts.
182
183
184
- All docs content has been rewritten in Markdown (instead of HTML) for easier editing.
- Pages have been reorganized for simpler content and a more approachable hierarchy.
- We moved from regular CSS to SCSS to take full advantage of Bootstrap's variables, mixins, and more.
185
186

## What's new
187

188
189
We've added new components and changed some existing ones. Here are the new or updated styles.

190
191
192
193
| Component | Description |
| --- | --- |
| Cards | New, more flexible component to replace v3's panels, thumbnails, and wells. |
| New navbar | Replaces the previous navbar with a new, simpler component. |
194
| New progress bars | Replaces the old `.progress` `<div>` with a real `<progress>` element. |
195
| New table variants | Adds `.table-inverse`, table head options, replaces `.table-condensed` with `.table-sm`, and `.table-reflow`. |
196
| New utility classes | |
197

198
199
TODO: audit new classes that didn't exist in v3

200
201
202
## What's removed
The following components have been removed in v4.0.0.

203
204
| Component | Removed from 3.x.x | 4.0.0 Equivalent |
| --- | --- | --- |
205
206
207
| Panels |  | Cards |
| Thumbnails |  | Cards |
| Wells |  | Cards |
208
| Justified navs | | |
209

210
TODO: audit classes in v3 that aren't present in v4
211

212
213
### Responsive utilities

214
The following variables have been removed in v4.0.0. Use the `media-breakpoint-up()`, `media-breakpoint-down()`, or `media-breakpoint-only()` Sass mixins or the `$grid-breakpoints` Sass map instead of:
215

216
217
218
* `@screen-phone`, `@screen-tablet`, `@screen-desktop`, `@screen-lg-desktop`.
* `@screen-xs`, `@screen-sm`, `@screen-md`, `@screen-lg`.
* `@screen-xs-min`, `@screen-xs-max`, `@screen-sm-min`, `@screen-sm-max`, `@screen-md-min`, `@screen-md-max`, `@screen-lg-min`, `@screen-lg-max`
219

Mark Otto's avatar
Mark Otto committed
220
221
222
223
224
225
226
227
228
229
The responsive utility classes have also been overhauled.

- The old classes (`.hidden-xs` `.hidden-sm` `.hidden-md` `.hidden-lg` `.visible-xs-block` `.visible-xs-inline` `.visible-xs-inline-block` `.visible-sm-block` `.visible-sm-inline` `.visible-sm-inline-block` `.visible-md-block` `.visible-md-inline` `.visible-md-inline-block` `.visible-lg-block` `.visible-lg-inline` `.visible-lg-inline-block`) are gone.
- They have been replaced by `.hidden-xs-up` `.hidden-xs-down` `.hidden-sm-up` `.hidden-sm-down` `.hidden-md-up` `.hidden-md-down` `.hidden-lg-up` `.hidden-lg-down`.
- The `.hidden-*-up` classes hide the element when the viewport is at the given breakpoint or larger (e.g. `.hidden-md-up` hides an element on medium, large, and extra-large devices).
- The `.hidden-*-down` classes hide the element when the viewport is at the given breakpoint or smaller (e.g. `.hidden-md-down` hides an element on extra-small, small, and medium devices).

Rather than using explicit `.visible-*` classes, you make an element visible by simply not hiding it at that screen size. You can combine one `.hidden-*-up` class with one `.hidden-*-down` class to show an element only on a given interval of screen sizes (e.g. `.hidden-sm-down.hidden-xl-up` shows the element only on medium and large devices).

Note that the changes to the grid breakpoints in v4 means that you'll need to go one breakpoint larger to achieve the same results (e.g. `.hidden-md` is more similar to `.hidden-lg-down` than to `.hidden-md-down`). The new responsive utility classes don't attempt to accommodate less common cases where an element's visibility can't be expressed as a single contiguous range of viewport sizes; you will instead need to use custom CSS in such cases.
230

Mark Otto's avatar
Mark Otto committed
231
232
233
## Misc notes to prioritize

- Removed the `min--moz-device-pixel-ratio` typo hack for retina media queries
234
- Dropped `.hidden` and `.show` because they conflict with jQuery's `$(...).hide()` and `$(...).show()` methods.
Mark Otto's avatar
Mark Otto committed
235
236
- Change buttons' `[disabled]` to `:disabled` as IE9+ supports `:disabled`. However `fieldset[disabled]` is still necessary because [native disabled fieldsets are still buggy in IE11](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/fieldset#Browser_compatibility).

237
238
TODO: audit list of stuff in v3 that was marked as deprecated

239
## Additional notes
240
- Removed support for styled nested tables (for now)