Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/components/popovers.md2
-rw-r--r--docs/content/reboot.md4
-rw-r--r--docs/migration.md6
3 files changed, 9 insertions, 3 deletions
diff --git a/docs/components/popovers.md b/docs/components/popovers.md
index 1357cefcb5..1cd96da496 100644
--- a/docs/components/popovers.md
+++ b/docs/components/popovers.md
@@ -218,7 +218,7 @@ Options can be passed via data attributes or JavaScript. For data attributes, ap
<td>string | function</td>
<td>'right'</td>
<td>
- <p>How to position the popover - top | bottom | left | right | auto.<br>When "auto" is specified, it will dynamically reorient the popover. For example, if placement is "auto left", the popover will display to the left when possible, otherwise it will display right.</p>
+ <p>How to position the popover - top | bottom | left | right.</p>
<p>When a function is used to determine the placement, it is called with the popover DOM node as its first argument and the triggering element DOM node as its second. The <code>this</code> context is set to the popover instance.</p>
</td>
</tr>
diff --git a/docs/content/reboot.md b/docs/content/reboot.md
index 5cb4be1750..e37f23d7d0 100644
--- a/docs/content/reboot.md
+++ b/docs/content/reboot.md
@@ -41,7 +41,9 @@ The default web fonts (Helvetica Neue, Helvetica, and Arial) have been dropped i
$font-family-sans-serif:
// Safari for OS X and iOS (San Francisco)
-apple-system,
- // Chrome for OS X (San Francisco)
+ // Chrome >= 56 for OS X (San Francisco), Windows, Linux and Android
+ system-ui,
+ // Chrome < 56 for OS X (San Francisco)
BlinkMacSystemFont,
// Windows
"Segoe UI",
diff --git a/docs/migration.md b/docs/migration.md
index b6704a6690..487fa7c53c 100644
--- a/docs/migration.md
+++ b/docs/migration.md
@@ -168,7 +168,7 @@ Dropped entirely for the new card component.
- `.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>`, `.h3`) or bold elements or classes (e.g. `<strong>`, `<b>`, [`.font-weight-bold`]({{ site.baseurl }}/utilities/typography/#font-weight-and-italics)). Note that `.card-title`, while similarly named, produces a different look than `.panel-title`.
+- `.panel-title` to `.card-title`. Depending on the desired look, you may also want to use [heading elements or classes]({{ site.baseurl }}/content/typography/#headings) (e.g. `<h3>`, `.h3`) or bold elements or classes (e.g. `<strong>`, `<b>`, [`.font-weight-bold`]({{ site.baseurl }}/utilities/typography/#font-weight-and-italics)). Note that `.card-title`, while similarly named, produces a different look than `.panel-title`.
- `.panel-body` to `.card-block`
- `.panel-footer` to `.card-footer`
- `.panel-primary` to `.card-primary` and `.card-inverse` (or use `.bg-primary` on `.card-header`)
@@ -181,6 +181,10 @@ Dropped entirely for the new card component.
- Removed support for `auto` placement options.
+### Popovers
+
+- Removed support for `auto` placement options.
+
### Carousel
- Overhauled the entire component to simplify design and styling. We have fewer styles for you to override, new indicators, and new icons.