From da87424a796a6c61866caaed1069360c822cdd4d Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sun, 6 Dec 2015 17:30:25 -0800 Subject: [PATCH 1/5] Remove .navbar-form from example pages; refs #18087 [skip sauce] --- docs/examples/dashboard/index.html | 2 +- docs/examples/navbar/index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/examples/dashboard/index.html b/docs/examples/dashboard/index.html index 87c507c3d3..764df3ecdd 100644 --- a/docs/examples/dashboard/index.html +++ b/docs/examples/dashboard/index.html @@ -35,7 +35,7 @@ Profile Help - diff --git a/docs/examples/navbar/index.html b/docs/examples/navbar/index.html index 029ce8ed2f..3eda949334 100644 --- a/docs/examples/navbar/index.html +++ b/docs/examples/navbar/index.html @@ -41,7 +41,7 @@ About - From 7739ea8d8579c78642c2e3e86210d5b638d5bd56 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sun, 6 Dec 2015 17:31:27 -0800 Subject: [PATCH 2/5] Add .navbar-form entry to v4 migration docs; refs #18087 [skip sauce] --- docs/migration.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/migration.md b/docs/migration.md index 0d1fd52116..5d14f34a7b 100644 --- a/docs/migration.md +++ b/docs/migration.md @@ -102,6 +102,10 @@ New to Bootstrap 4 is the Reboot, a new stylesheet that builds on Normalize with - 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. +## Navbar + +- Dropped the `.navbar-form` class entirely. It's no longer necessary. + ### Pager - Renamed `.previous` and `.next` to `.pager-prev` and `.pager-next`. From 28bbf42e26ee321402d956c9f71f9fff7246420e Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sun, 6 Dec 2015 17:37:55 -0800 Subject: [PATCH 3/5] Fix .font-italic utility class definition Erratum from 26da610bd03e7efe9255b2b88f14449972f7d616 Refs #18001 --- scss/_utilities.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scss/_utilities.scss b/scss/_utilities.scss index 25ace532cf..78265a31fe 100644 --- a/scss/_utilities.scss +++ b/scss/_utilities.scss @@ -72,11 +72,11 @@ .text-uppercase { text-transform: uppercase !important; } .text-capitalize { text-transform: capitalize !important; } -// Weight +// Weight and italics .font-normal { font-weight: normal; } .font-bold { font-weight: bold; } -.font-italic { font-style: normal; } +.font-italic { font-style: italic; } // Contextual colors From d1a0af8b24c09d5558cba0e65c34d1f1292e6085 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sun, 6 Dec 2015 17:43:25 -0800 Subject: [PATCH 4/5] Tweak naming and docs of font utility classes * `.font-normal` is too generic. Rename it to `.font-weight-normal` for clarity. * Rename `.font-bold` to `.font-weight-bold` so as to parallel `.font-weight-normal`. * In docs, gloss "weight" term in relation to fonts for the benefit of non-typographiles. Refs #18433 [skip sauce] --- docs/components/utilities.md | 8 ++++---- scss/_utilities.scss | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/components/utilities.md b/docs/components/utilities.md index c73db767fa..940219263a 100644 --- a/docs/components/utilities.md +++ b/docs/components/utilities.md @@ -121,13 +121,13 @@ Transform text in components with text capitalization classes.

CapiTaliZed text.

{% endexample %} -## Font weight and style +## Font weight and italics -Quickly change the weight and style of text. +Quickly change the weight (boldness) of text or italicize text. {% example html %} -

Normal text.

-

Bold text.

+

Bold text.

+

Normal weight text.

Italicized text.

{% endexample %} diff --git a/scss/_utilities.scss b/scss/_utilities.scss index 78265a31fe..520666ec1d 100644 --- a/scss/_utilities.scss +++ b/scss/_utilities.scss @@ -74,9 +74,9 @@ // Weight and italics -.font-normal { font-weight: normal; } -.font-bold { font-weight: bold; } -.font-italic { font-style: italic; } +.font-weight-normal { font-weight: normal; } +.font-weight-bold { font-weight: bold; } +.font-italic { font-style: italic; } // Contextual colors From 6e8c7c9b2df0cb8c71d2f36cd8650e601facbbc2 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 7 Dec 2015 01:09:56 -0800 Subject: [PATCH 5/5] Add Wall of Browser Bugs entry related to #16028 https://bugs.webkit.org/show_bug.cgi?id=151933 [skip sauce] --- docs/_data/browser-bugs.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/_data/browser-bugs.yml b/docs/_data/browser-bugs.yml index 074d9fd31a..d8bd36696e 100644 --- a/docs/_data/browser-bugs.yml +++ b/docs/_data/browser-bugs.yml @@ -290,6 +290,16 @@ origin: > Bootstrap#11266, Bootstrap#13098 +- + browser: > + Safari (iOS) + summary: > + Tapping on `` doesn't fire `click` events + upstream_bug: > + WebKit#151933 + origin: > + Bootstrap#16028 + - browser: > Safari (iOS 9+)