mirror of
https://github.com/twbs/bootstrap.git
synced 2025-11-22 00:11:09 -05:00
8.3 KiB
8.3 KiB
| layout | title | description | group | aliases | toc |
|---|---|---|---|---|---|
| docs | Migrating to v5 | Track and review changes to the Bootstrap source files, documentation, and components to help you migrate from v4 to v5. | migration | /migration/ | true |
Browser support
See the browser and devices page for details on what is currently supported in Bootstrap 5. Since v4, here's what's changed to our browser support:
- Dropped support for Internet Explorer NN
- Dropped support for Firefox NN - MM
- Dropped support for Safari NN
- Dropped support for iOS Safari NN
- Dropped support for Chrome NN
- Dropped support for Android NN
Sass
Changes to our source Sass files and compiled CSS.
- Removed
hover,hover-focus,plain-hover-focus, andhover-focus-activemixins. Use regular CSS syntax for these moving forward. See #28267. - Remove previously deprecated mixins
float()form-control-mixin()nav-divider()retina-img()text-hide()(also dropped the associated utility class,.text-hide)visibility()form-control-focus()
- Todo: New variables?
- Todo: Rearrange forms source files (under
scss/forms/) - Todo: Rearrange grid source files (under
scss/grid/) - Removed print styles and
$enable-print-stylesvariable. Print display classes, however, have remained intact. See #28339. - Dropped
color(),theme-color()&gray()functions in favor of variables. See #29083 - The
theme-color-level()function is renamed tocolor-level()and now accepts any color you want instead of only$theme-colorcolors. See #29083 $enable-grid-classesdoesn't disable the generation of container classes anymore See #29146- Line heights are dropped from several components to simplify our codebase. The
button-size()andpagination-size()do not accept line height parameters anymore. See #29271 - The
button-variant()mixin now accepts 3 optional color parameters, for each button state, to override the color provided bycolor-yiq(). By default, these parameters will find which color provides more contrast against the button state's background color withcolor-yiq(). - The
button-outline-variant()mixin now accepts an additional argument,$active-color, for setting the button's active state text color. By default, this parameter will find which color provides more contrast against the button's active background color withcolor-yiq(). - Ditch the Sass map merges, which makes it easier to remove redundant values. Keep in mind you now have to define all values in the Sass maps like
$theme-colors. Check out how to deal with Sass maps on the [theming documentation]({{< docsref "/getting-started/theming#maps-and-loops" >}}).
JavaScript
Changes to our source and compiled JavaScript files.
- Dropped jQuery dependency and rewrote plugins to be in regular JavaScript.
- Removed underscore from public static methods like
_getInstance()→getInstance().
Grid and layout
Changes to any layout tools and our grid system.
- Dropped
.mediacomponent as it can be built with utility classes. See #28265. - Todo: Remove
position: relativefrom grid columns - Todo: Integrate CSS grid into our grid system
Content, Reboot, etc
Changes to Reboot, typography, tables, and more.
- [RFS]({{< docsref "/getting-started/rfs" >}}) enabled for automated font size rescaling. See #29152
- Reset default horizontal
padding-lefton<ul>and<ol>elements from browser default40pxto2rem. - Simplified table styles (no more 2px border on
thead > thelements) and tightened cell padding. - Dropped
.pre-scrollableclass. See #29135 .text-*utilities do not add hover and focus states to links anymore..link-*helper classes can be used instead. See #29267- Drop
.text-justifyclass. See #229793
Forms
- Rearranged form documentation under its own top-level section.
- Split out old Forms page into several subpages
- Moved input groups docs under new Forms section
- Rearranged source Sass files under
scss/forms/, including moving over input group styles. - Combined native and custom checkboxes and radios into single
.form-checkclass.- New checks support sizing via
em/font-sizeor explicit modifier classes now. - New checks now appear larger by default for improved usability.
- Dropped
.custom-controland associated classes. - Renamed most
$custom-controlvariables to$form-controlones.
- New checks support sizing via
- Combined native and custom selects into
.form-select.- Dropped
.custom-selectand associated classes. - Renamed most
$custom-selectvariables to$form-selectones.
- Dropped
- Updated file input component with same overall design, but improved HTML.
- Refactored
.form-filemarkup to resolve some visual bugs while allowing translation and button text changes via HTML instead of CSS. - Dropped native
.form-control-fileand.form-control-rangecomponents entirely. - Renamed
.custom-fileto.form-file(including variables). - Added support for
:focusand:disabledstyles.
- Refactored
- Renamed
.custom-rangeto.form-range(including variables). - Dropped
.form-groupfor margin utilities (we've replaced our docs examples with.mb-3). - Dropped support for
.form-control-plaintextinside.input-groups. - Dropped
.form-textas existing utilities cover this use class's former use case (e.g.,.mt-2,.text-small, and/or.text-muted).
Components
Disabled states
- Disabled states of the buttons, close button, pagination link & form range now have
pointer-events: noneadded. This simplifies our codebase and makes it easier to override active states in CSS. #29296.
Alerts
- Todo: Remove auto-darkening of
<hr>elements in.alert-*class variants.<hr>s usergba()for their color, so these should naturally blend anyway.
Badges
Badges were overhauled to better differentiate themselves from buttons and to better utilize utility classes.
- Todo: Removed and replaced
.badgemodifier classes with background utility classes (e.g., use.bg-primaryinstead of.badge-primary) - Todo: Removed
.badge-pillfor the.rounded-pillutility class - Todo: Removed badge's hover and focus styles for
a.badgeandbutton.badge.
Cards
- Removed the card columns in favor of a Masonry grid See #28922.
Jumbotron
- The jumbotron component is removed in favor of utility classes like
.bg-lightfor the background color and.p-*classes to control padding.
Navbars
- All navbars now require a container within. This drastically simplifies spacing requirements and removes the need for extensive CSS overrides we added for responsive containers in v4.
Pagination
- Pagination links now have customizable
margin-leftthat are dynamically rounded on all corners when separated from one another.
Popovers
- Renamed
.arrowto.popover-arrow
Tooltips
- Renamed
.arrowto.tooltip-arrow
Accessibility
.sr-only-focusabledoes not require.sr-onlyanymore. See #28720.
Utilities
- Renamed
.text-monospaceto.font-monospace - Decreased the number of responsive order utilities per breakpoint. The highest order utility with a number now is
.order-5instead of.order-12. See #28874. - New
line-heightutilities:.lh-1,.lh-sm,.lh-baseand.lh-lg. See [here]({{< docsref "/utilities/text#line-height" >}}). - Added
.bg-bodyfor quickly setting the<body>'s background to additional elements. - Todo: Drop
.text-hideas it's an antiquated method for hiding text that shouldn't be used anymore - Todo: Split utilities into property-value utility classes and helpers
Docs
- Removed "Wall of browser bugs" page because it has become obsolete