From a2ff16c3cef2c4c6a04feace15b1541226705a8e Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 3 Feb 2014 01:44:50 -0800 Subject: fix #12540 --- docs/migration.html | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'docs/migration.html') diff --git a/docs/migration.html b/docs/migration.html index ebff44885..69fe8d08c 100644 --- a/docs/migration.html +++ b/docs/migration.html @@ -105,14 +105,6 @@ lead: "Guidance on how to upgrade from Bootstrap v2.x to v3.x with emphasis on m .hidden-desktop Split into .hidden-md .hidden-lg - - .input-small - .input-sm - - - .input-large - .input-lg - .input-block-level .form-control @@ -260,6 +252,10 @@ lead: "Guidance on how to upgrade from Bootstrap v2.x to v3.x with emphasis on m Pull .col-sm-pull-* .col-md-pull-* .col-lg-pull-* + + Input height sizes + .input-sm .input-lg + Input groups .input-group .input-group-addon .input-group-btn @@ -345,7 +341,12 @@ lead: "Guidance on how to upgrade from Bootstrap v2.x to v3.x with emphasis on m N/A - Block level from input + Fixed-width input sizes + .input-mini .input-small .input-medium .input-large .input-xlarge .input-xxlarge + Use .form-control and the grid system instead. + + + Block level form input .input-block-level No direct equivalent, but forms controls are similar. -- cgit v1.2.3 From 69af98e6bb74b0bbc3b3964340f5952d83ae5130 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 3 Feb 2014 01:57:45 -0800 Subject: add .btn-inverse removal to migration guide; fixes #12538 --- docs/migration.html | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'docs/migration.html') diff --git a/docs/migration.html b/docs/migration.html index 69fe8d08c..685d11a41 100644 --- a/docs/migration.html +++ b/docs/migration.html @@ -350,6 +350,11 @@ lead: "Guidance on how to upgrade from Bootstrap v2.x to v3.x with emphasis on m .input-block-level No direct equivalent, but forms controls are similar. + + Inverse buttons + .btn-inverse + N/A + Fluid row .row-fluid -- cgit v1.2.3 From d5558621b22ef10abb43646b59c9823cad852e68 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 3 Feb 2014 02:04:17 -0800 Subject: add removal of .help-inline to the migration guide; fixes #12539 --- docs/migration.html | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'docs/migration.html') diff --git a/docs/migration.html b/docs/migration.html index 69fe8d08c..4c6fa70a1 100644 --- a/docs/migration.html +++ b/docs/migration.html @@ -400,6 +400,11 @@ lead: "Guidance on how to upgrade from Bootstrap v2.x to v3.x with emphasis on m .nav-list .nav-header No direct equivalent, but list groups and .panel-groups are similar. + + Inline help for form controls + .help-inline + No exact equivalent, but .help-block is similar. + -- cgit v1.2.3 From e958008048dbd359cec0cc16f23d69881107203b Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 3 Feb 2014 02:11:25 -0800 Subject: fix #12541 --- docs/migration.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/migration.html') diff --git a/docs/migration.html b/docs/migration.html index c2654e6f1..ddbd99362 100644 --- a/docs/migration.html +++ b/docs/migration.html @@ -426,7 +426,7 @@ lead: "Guidance on how to upgrade from Bootstrap v2.x to v3.x with emphasis on m
  • Images are no longer responsive by default. Use .img-responsive for fluid <img> size.
  • The icons, now .glyphicon, are now font based. Icons also require a base and icon class (e.g. .glyphicon .glyphicon-asterisk).
  • Typeahead has been dropped, in favor of using Twitter Typeahead.
  • -
  • Modal markup has changed significantly. The .modal-header, .modal-body, and .modal-footer sections are now wrapped in .modal-content and .modal-dialog for better mobile styling and behavior.
  • +
  • Modal markup has changed significantly. The .modal-header, .modal-body, and .modal-footer sections are now wrapped in .modal-content and .modal-dialog for better mobile styling and behavior. Also, you should no longer apply .hide to .modal in your markup.
  • The HTML loaded by the remote modal option is now injected into the .modal instead of into the .modal-body. This allows you to also easily vary the header and footer of the modal, not just the modal body.
  • JavaScript events are namespaced. For example, to handle the modal "show" event, use 'show.bs.modal'. For tabs "shown" use 'shown.bs.tab', etc.
  • -- cgit v1.2.3 From 819b19e39c3dc12f4201e6c0f27d49e1742dbbba Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 3 Feb 2014 23:05:51 -0800 Subject: fix #12494 in the migration docs --- docs/migration.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/migration.html') diff --git a/docs/migration.html b/docs/migration.html index ddbd99362..d8fe72741 100644 --- a/docs/migration.html +++ b/docs/migration.html @@ -427,7 +427,7 @@ lead: "Guidance on how to upgrade from Bootstrap v2.x to v3.x with emphasis on m
  • The icons, now .glyphicon, are now font based. Icons also require a base and icon class (e.g. .glyphicon .glyphicon-asterisk).
  • Typeahead has been dropped, in favor of using Twitter Typeahead.
  • Modal markup has changed significantly. The .modal-header, .modal-body, and .modal-footer sections are now wrapped in .modal-content and .modal-dialog for better mobile styling and behavior. Also, you should no longer apply .hide to .modal in your markup.
  • -
  • The HTML loaded by the remote modal option is now injected into the .modal instead of into the .modal-body. This allows you to also easily vary the header and footer of the modal, not just the modal body.
  • +
  • As of v3.1.0, the HTML loaded by the remote modal option is now injected into the .modal-content (from v3.0.0 to v3.0.3, into the .modal) instead of into the .modal-body. This allows you to also easily vary the header and footer of the modal, not just the modal body.
  • JavaScript events are namespaced. For example, to handle the modal "show" event, use 'show.bs.modal'. For tabs "shown" use 'shown.bs.tab', etc.
  • For more information on upgrading to v3.0, and code snippets from the community, see Bootply.

    -- cgit v1.2.3 From bd37ea307686716edd6df409f2fb76951bfa6a5b Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 3 Mar 2014 14:42:39 -0800 Subject: add data-toggle button.js change to migration docs --- docs/migration.html | 1 + 1 file changed, 1 insertion(+) (limited to 'docs/migration.html') diff --git a/docs/migration.html b/docs/migration.html index d8fe72741..ff856140d 100644 --- a/docs/migration.html +++ b/docs/migration.html @@ -428,6 +428,7 @@ lead: "Guidance on how to upgrade from Bootstrap v2.x to v3.x with emphasis on m
  • Typeahead has been dropped, in favor of using Twitter Typeahead.
  • Modal markup has changed significantly. The .modal-header, .modal-body, and .modal-footer sections are now wrapped in .modal-content and .modal-dialog for better mobile styling and behavior. Also, you should no longer apply .hide to .modal in your markup.
  • As of v3.1.0, the HTML loaded by the remote modal option is now injected into the .modal-content (from v3.0.0 to v3.0.3, into the .modal) instead of into the .modal-body. This allows you to also easily vary the header and footer of the modal, not just the modal body.
  • +
  • The checkbox and radio features of the button.js plugin now both use data-toggle="buttons" instead of data-toggle="buttons-checkbox" or data-toggle="buttons-radio" in their markup.
  • JavaScript events are namespaced. For example, to handle the modal "show" event, use 'show.bs.modal'. For tabs "shown" use 'shown.bs.tab', etc.
  • For more information on upgrading to v3.0, and code snippets from the community, see Bootply.

    -- cgit v1.2.3