From 442f472a2d6faf1f3ab488025ea9cb90661278d4 Mon Sep 17 00:00:00 2001 From: Heiko Jansen Date: Thu, 19 May 2016 15:36:52 +0200 Subject: Mention removed modal option in migration docs The `remote` option and the accompanying event have been removed. --- docs/migration.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'docs/migration.md') diff --git a/docs/migration.md b/docs/migration.md index 827901f6a..b1106acb5 100644 --- a/docs/migration.md +++ b/docs/migration.md @@ -123,7 +123,10 @@ New to Bootstrap 4 is the Reboot, a new stylesheet that builds on Normalize with ### List groups - Replaced `a.list-group-item` with an explicit class, `.list-group-item-action`, for styling link and button versions of list group items. -- + +### Modal + +- The `remote` option (which could be used to automatically load and inject external content into a modal) and the correspending `loaded.bs.modal` event were removed. We recommend instead using client-side templating or a data binding framework, or calling [jQuery.load](http://api.jquery.com/load/) yourself. ### Navs -- cgit v1.2.3 From 1ba370f933a2fb1636ecf40844c98743e1127536 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 12 Jun 2016 21:54:15 -0700 Subject: follow up fix to #17593 --- docs/migration.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'docs/migration.md') diff --git a/docs/migration.md b/docs/migration.md index b1106acb5..56d74c43b 100644 --- a/docs/migration.md +++ b/docs/migration.md @@ -224,11 +224,7 @@ TODO: audit classes in v3 that aren't present in v4 ### Responsive utilities -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: - -* `@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` +All `@screen-` 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. The responsive utility classes have also been overhauled. -- cgit v1.2.3 From 288bd07a36788efe1ff494a2a489e27f3b6c6e87 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 27 Jun 2016 23:00:46 -0700 Subject: docs/migration.md: Fix "correspending" typo [ci skip] --- 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 56d74c43b..b8da6a968 100644 --- a/docs/migration.md +++ b/docs/migration.md @@ -126,7 +126,7 @@ New to Bootstrap 4 is the Reboot, a new stylesheet that builds on Normalize with ### Modal -- The `remote` option (which could be used to automatically load and inject external content into a modal) and the correspending `loaded.bs.modal` event were removed. We recommend instead using client-side templating or a data binding framework, or calling [jQuery.load](http://api.jquery.com/load/) yourself. +- The `remote` option (which could be used to automatically load and inject external content into a modal) and the corresponding `loaded.bs.modal` event were removed. We recommend instead using client-side templating or a data binding framework, or calling [jQuery.load](http://api.jquery.com/load/) yourself. ### Navs -- cgit v1.2.3 From a21ff400689c393e8d4e87c9ade3dbd073b31665 Mon Sep 17 00:00:00 2001 From: judetucker Date: Mon, 27 Jun 2016 14:14:26 -0700 Subject: Mention .list-inline-item change in the migration guide Fixes #18813 Closes #20187 [skip sauce] --- docs/migration.md | 1 + 1 file changed, 1 insertion(+) (limited to 'docs/migration.md') diff --git a/docs/migration.md b/docs/migration.md index b8da6a968..21217ab70 100644 --- a/docs/migration.md +++ b/docs/migration.md @@ -67,6 +67,7 @@ New to Bootstrap 4 is the Reboot, a new stylesheet that builds on Normalize with - Dropped `.page-header` as, aside from the border, all it's styles can be applied via utilities. - `.dl-horizontal` has been dropped. Instead, use `.row` on `
` and use grid column classes (or mixins) on its `
` and `
` children. - Custom `
` styling has moved to classes—`.blockquote` and the `.blockquote-reverse` modifier. +- `.list-inline` now requires that its children list items have the new `.list-inline-item` class applied to them. ### Images -- cgit v1.2.3 From f15611cb813e0b76e76c28e8258187c1220b83bf Mon Sep 17 00:00:00 2001 From: anantoghosh Date: Wed, 6 Jul 2016 13:14:48 +0530 Subject: Fix typo in 'Reboot' section Changed `box-sizing: border` to `box-sizing: border-box` --- 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 21217ab70..61a1d6c18 100644 --- a/docs/migration.md +++ b/docs/migration.md @@ -59,7 +59,7 @@ 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. +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-box` change, moving from `rem` to `em` units on many elements, link styles, and many form element resets. ### Typography -- cgit v1.2.3 From 11d43e456aaf79e32ecd084f03e800dd54ca98d6 Mon Sep 17 00:00:00 2001 From: anantoghosh Date: Tue, 12 Jul 2016 14:08:24 +0530 Subject: Fix typo in 'Reboot' about units In about 'Reboot', it says "moving **from** `rem` **to** `em` units. It should be moving from `em` to `rem`. --- 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 61a1d6c18..b043fbfad 100644 --- a/docs/migration.md +++ b/docs/migration.md @@ -59,7 +59,7 @@ 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-box` change, moving from `rem` to `em` units on many elements, link styles, and many form element resets. +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-box` change, moving from `em` to `rem` units on many elements, link styles, and many form element resets. ### Typography -- cgit v1.2.3 From 24a3fbfeac1fb6002377d5d25713fae1b37ca1b9 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Mon, 15 Aug 2016 17:04:03 +0200 Subject: Added information about the .panel-group class --- docs/migration.md | 1 + 1 file changed, 1 insertion(+) (limited to 'docs/migration.md') diff --git a/docs/migration.md b/docs/migration.md index b043fbfad..751a2e27e 100644 --- a/docs/migration.md +++ b/docs/migration.md @@ -161,6 +161,7 @@ Dropped entirely for the new card component. - `.panel` to `.card` - `.panel-default` removed and no replacement +- `.panel-group` removed and no replacement. `.card-group` is not a replacement, it is different. - `.panel-heading` to `.card-header` - `.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`) or bold elements or classes (e.g. ``, ``, [`.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`. - `.panel-body` to `.card-block` -- cgit v1.2.3 From 07f341e30efbee17679d9e4bc8dc4ac2124a3414 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 21 Aug 2016 19:56:18 -0700 Subject: Fixes #20504: Mention .divider to .dropdown-divider name change --- docs/migration.md | 1 + 1 file changed, 1 insertion(+) (limited to 'docs/migration.md') diff --git a/docs/migration.md b/docs/migration.md index b043fbfad..518a142d2 100644 --- a/docs/migration.md +++ b/docs/migration.md @@ -111,6 +111,7 @@ New to Bootstrap 4 is the Reboot, a new stylesheet that builds on Normalize with - Simplified dropdown styles to no longer ship with upward or downward facing arrows attached to the dropdown menu. - Dropdowns can be built with `
`s or `