From 42792682acc780b8ea6bf56655293cf9919a9115 Mon Sep 17 00:00:00 2001 From: David Richardson Date: Thu, 20 Aug 2015 10:33:45 +0100 Subject: Fix use of LESS var syntax in docs when referencing SCSS Example: > ... SCSS variables (e.g., `@enable-gradients: true`) ... Referenced SCSS but used the LESS syntax. Changed to: > ... SCSS variables (e.g., `$enable-gradients: true`) ... Closes #17114 --- docs/migration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/migration.md') diff --git a/docs/migration.md b/docs/migration.md index aa9186951..78eca6032 100644 --- a/docs/migration.md +++ b/docs/migration.md @@ -26,7 +26,7 @@ Here are the big ticket items you'll want to be aware of when moving from v3 to - Media queries are now in `em`s instead of `px`s. - Global font-size increased from `14px` to `16px`. - Added a new grid tier for ~`480px` and below. -- Replaced the separate optional theme with configurable options via SCSS variables (e.g., `@enable-gradients: true`). +- Replaced the separate optional theme with configurable options via SCSS variables (e.g., `$enable-gradients: true`). ### Components -- cgit v1.2.3 From bcc16d0754ccd274f72c60d51a19da0ed5916800 Mon Sep 17 00:00:00 2001 From: Kevin Kirsche Date: Thu, 20 Aug 2015 22:31:48 -0400 Subject: Document migration from panels to cards X-Ref: #17120 for `.panel-default` replacement --- docs/migration.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'docs/migration.md') diff --git a/docs/migration.md b/docs/migration.md index 78eca6032..9206c8034 100644 --- a/docs/migration.md +++ b/docs/migration.md @@ -88,6 +88,20 @@ New to Bootstrap 4 is the Reboot, a new stylesheet that builds on Normalize with Dropped entirely for the new card component. +#### Panels + +- `.panel` to `.card` +- `.panel-default` removed and no replacement +- `.panel-heading` to `.card-header` +- `.panel-title` to `.card-title` +- `.panel-body` to `.card-block` +- `.panel-footer` to `.card-footer` +- `.panel-primary` to `.card-primary` and `.card-inverse` +- `.panel-success` to `.card-success` and `.card-inverse` +- `.panel-info` to `.card-info` and `.card-inverse` +- `.panel-warning` to `.card-warning` and `.card-inverse` +- `.panel-danger` to `.card-danger` and `.card-inverse` + ### Carousel - Renamed `.item` to `.carousel-item`. -- cgit v1.2.3 From 7a35231a92643070b7fe5d88afaf7e8549ba95b8 Mon Sep 17 00:00:00 2001 From: Kevin Kirsche Date: Thu, 20 Aug 2015 22:38:47 -0400 Subject: Add new table variants not in V3 Audit the new table variants in V4 that aren't in V3 --- docs/migration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/migration.md') diff --git a/docs/migration.md b/docs/migration.md index 78eca6032..1da453aee 100644 --- a/docs/migration.md +++ b/docs/migration.md @@ -112,7 +112,7 @@ We've added new components and changed some existing ones. Here are the new or u | Cards | New, more flexible component to replace v3's panels, thumbnails, and wells. | | New navbar | Replaces the previous navbar with a new, simpler component. | | New progress bars | Replaces the old `.progress` `
` with a real `` element. | -| New table variants | | +| New table variants | Adds `.table-inverse`, table head options, replaces `.table-condensed` with `.table-sm`, and `.table-reflow`. | | New utility classes | | TODO: audit new classes that didn't exist in v3 -- cgit v1.2.3 From dc4bfcdf441e927397c857ec25b1e63953809212 Mon Sep 17 00:00:00 2001 From: Kevin Kirsche Date: Thu, 20 Aug 2015 22:42:18 -0400 Subject: Add new table functionality to table migration section Calls out the new `.table-inverse`, `.table-reflow`, `.thead-default` and `.thead-inverse` --- docs/migration.md | 2 ++ 1 file changed, 2 insertions(+) (limited to 'docs/migration.md') diff --git a/docs/migration.md b/docs/migration.md index 78eca6032..f9b0f45e2 100644 --- a/docs/migration.md +++ b/docs/migration.md @@ -60,6 +60,8 @@ New to Bootstrap 4 is the Reboot, a new stylesheet that builds on Normalize with - Responsive tables no longer require a wrapping element. Instead, just put the `.table-responsive` right on the ``. - Renamed `.table-condensed` to `.table-sm` for consistency. - Added a new `.table-inverse` option. +- Added a new `.table-reflow` option. +- Added table header modifers: `.thead-default` and `.thead-inverse` ### Forms -- cgit v1.2.3 From 2965adfea0071e05c92ca07450f473ea62714403 Mon Sep 17 00:00:00 2001 From: vsn4ik Date: Sat, 22 Aug 2015 21:16:05 +0300 Subject: Remove dropped btn-xs and btn-group-xs from docs --- docs/migration.md | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'docs/migration.md') diff --git a/docs/migration.md b/docs/migration.md index bd8ee7529..d1c58c94f 100644 --- a/docs/migration.md +++ b/docs/migration.md @@ -77,6 +77,14 @@ New to Bootstrap 4 is the Reboot, a new stylesheet that builds on Normalize with - Added a new `~480px` grid breakpoint, meaning there are now five total tiers. +### Buttons + +- Dropped the `.btn-xs` class entirely. + +### Button group + +- Dropped the `.btn-group-xs` class entirely. + ### Navs - Dropped nearly all `>` selectors for simpler styling via un-nested classes. -- cgit v1.2.3