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+) 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/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 - 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`. diff --git a/scss/_utilities.scss b/scss/_utilities.scss index 25ace532cf..520666ec1d 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-weight-normal { font-weight: normal; } +.font-weight-bold { font-weight: bold; } +.font-italic { font-style: italic; } // Contextual colors