From 547e6e8af8af618b7ab9bf9bd68b144fcdf41fae Mon Sep 17 00:00:00 2001 From: Pascal Herbert Date: Wed, 19 Aug 2015 18:46:05 +0200 Subject: fix broken link to flexbox --- docs/components/card.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/components') diff --git a/docs/components/card.md b/docs/components/card.md index 053d978ca..c3af16d83 100644 --- a/docs/components/card.md +++ b/docs/components/card.md @@ -293,7 +293,7 @@ Cards include their own variant classes for quickly changing the `background-col ## Groups -Use card groups to render cards as a single, attached element with equal width and height columns. By default, card groups use `display: table;` and `table-layout: fixed;` to achieve their uniform sizing. However, enabling [flexbox mode](/layout/flexbox) can switch that to use `display: flex;` and provide the same effect. +Use card groups to render cards as a single, attached element with equal width and height columns. By default, card groups use `display: table;` and `table-layout: fixed;` to achieve their uniform sizing. However, enabling [flexbox mode](/getting-started/flexbox) can switch that to use `display: flex;` and provide the same effect. {% example html %}
-- cgit v1.2.3 From 95999a13b4fc5231243b751523db1ed96fceeba4 Mon Sep 17 00:00:00 2001 From: Chris Rowe Date: Wed, 19 Aug 2015 19:29:21 +0100 Subject: Fixed "Srollspy" typo in component title --- docs/components/scrollspy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/components') diff --git a/docs/components/scrollspy.md b/docs/components/scrollspy.md index efe8c8145..9bd3a3a53 100644 --- a/docs/components/scrollspy.md +++ b/docs/components/scrollspy.md @@ -1,6 +1,6 @@ --- layout: docs -title: Srollspy +title: Scrollspy group: components --- -- cgit v1.2.3 From 66a9ed278e90963fedf95518438c454e22b1e6f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pete=20Nyk=C3=A4nen?= Date: Wed, 19 Aug 2015 21:43:16 +0300 Subject: Fixed couple of formatting errors in modal.md One extra `

` was out of place, plus couple of issues with `'s which caused some odd formatting. --- docs/components/modal.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/components') diff --git a/docs/components/modal.md b/docs/components/modal.md index 162a48be5..80b86c116 100644 --- a/docs/components/modal.md +++ b/docs/components/modal.md @@ -39,7 +39,7 @@ There are some caveats regarding using modals on mobile devices. [See our browse ### Static example -A rendered modal with header, body, and set of actions in the footer.

+A rendered modal with header, body, and set of actions in the footer.
-
{% highlight html %} @@ -271,16 +257,6 @@ Button dropdowns work with buttons of all sizes. ...
- - -
- - -
{% endhighlight %} ### Dropup variation -- cgit v1.2.3 From 9471ad7533fe96eff74955bb205116a303f91c0f Mon Sep 17 00:00:00 2001 From: Christian Oliff Date: Fri, 21 Aug 2015 00:43:34 +0900 Subject: Fix tether typo Fix tether typo --- docs/components/tooltips.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/components') diff --git a/docs/components/tooltips.md b/docs/components/tooltips.md index 3881a8e03..4cf42dd4f 100644 --- a/docs/components/tooltips.md +++ b/docs/components/tooltips.md @@ -15,7 +15,7 @@ Inspired by the excellent Tipsy jQuery plugin written by Jason Frame. Tooltips a Things to know when using the tooltip plugin: -- Tooltips rely on on the 3rd party library [tehter](http://github.hubspot.com/tether/) for positioning. You must include [tether.min.js](https://github.com/HubSpot/tether/blob/master/dist/js/tether.min.js) before bootstrap.js in order for tooltips to work! +- Tooltips rely on on the 3rd party library [tether](http://github.hubspot.com/tether/) for positioning. You must include [tether.min.js](https://github.com/HubSpot/tether/blob/master/dist/js/tether.min.js) before bootstrap.js in order for tooltips to work! - Tooltips are opt-in for performance reasons, so **you must initialize them yourself**. - Tooltips with zero-length titles are never displayed. - Specify `container: 'body'` to avoid rendering problems in more complex components (like our input groups, button groups, etc). -- cgit v1.2.3 From 8bfb295c1b56cce58ac43ee83b29a6c15bd5f5e9 Mon Sep 17 00:00:00 2001 From: Zac Echola Date: Thu, 20 Aug 2015 13:46:49 -0500 Subject: Fix container option example code --- docs/components/popovers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/components') diff --git a/docs/components/popovers.md b/docs/components/popovers.md index 6a911345e..da0effbfe 100644 --- a/docs/components/popovers.md +++ b/docs/components/popovers.md @@ -43,9 +43,9 @@ When you have some styles on a parent element that interfere with a popover, you {% highlight js %} $(function () { - $('.example-popover').popover( + $('.example-popover').popover({ container: 'body' - ) + }) }) {% endhighlight %} -- cgit v1.2.3 From df734852ee91486767f5af27319adce966e2e0cf Mon Sep 17 00:00:00 2001 From: Kevin Kirsche Date: Thu, 20 Aug 2015 15:22:03 -0400 Subject: v4 Docs - Fix scroll spy navbar example Fix #17125 --- docs/components/scrollspy.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'docs/components') diff --git a/docs/components/scrollspy.md b/docs/components/scrollspy.md index 9bd3a3a53..26d0dd433 100644 --- a/docs/components/scrollspy.md +++ b/docs/components/scrollspy.md @@ -19,13 +19,13 @@ The ScrollSpy plugin is for automatically updating nav targets based on scroll p -- cgit v1.2.3 From 73a88dbe8649758e20464c60cfd568e4828d6c27 Mon Sep 17 00:00:00 2001 From: Heinrich Fenkart Date: Fri, 21 Aug 2015 00:17:35 +0200 Subject: Docs: Update all dropdowns to new HTML structure --- docs/components/button-group.md | 40 ++++++++++++++--------------- docs/components/input-group.md | 56 ++++++++++++++++++++--------------------- docs/components/scrollspy.md | 12 ++++----- 3 files changed, 54 insertions(+), 54 deletions(-) (limited to 'docs/components') diff --git a/docs/components/button-group.md b/docs/components/button-group.md index 73d3ef5ff..12c472b08 100644 --- a/docs/components/button-group.md +++ b/docs/components/button-group.md @@ -96,10 +96,10 @@ Place a `.btn-group` within another `.btn-group` when you want dropdown menus mi - + {% endexample %} @@ -116,10 +116,10 @@ Make a set of buttons appear vertically stacked rather than horizontally. **Spli - + @@ -127,28 +127,28 @@ Make a set of buttons appear vertically stacked rather than horizontally. **Spli - + diff --git a/docs/components/input-group.md b/docs/components/input-group.md index 0f27e9bac..1b3a71545 100644 --- a/docs/components/input-group.md +++ b/docs/components/input-group.md @@ -120,13 +120,13 @@ Buttons in input groups are a bit different and require one extra level of nesti - + @@ -138,13 +138,13 @@ Buttons in input groups are a bit different and require one extra level of nesti - + @@ -162,13 +162,13 @@ Buttons in input groups are a bit different and require one extra level of nesti - + @@ -181,13 +181,13 @@ Buttons in input groups are a bit different and require one extra level of nesti - + diff --git a/docs/components/scrollspy.md b/docs/components/scrollspy.md index 26d0dd433..2cec07f90 100644 --- a/docs/components/scrollspy.md +++ b/docs/components/scrollspy.md @@ -21,12 +21,12 @@ The ScrollSpy plugin is for automatically updating nav targets based on scroll p -- cgit v1.2.3 From 66be25917a66a2cdb19a297a1ce7e5642357fc06 Mon Sep 17 00:00:00 2001 From: Heinrich Fenkart Date: Fri, 21 Aug 2015 02:15:17 +0200 Subject: Docs: various fixes Mostly links. Fixes #17056. --- docs/components/button-dropdown.md | 2 +- docs/components/button-group.md | 2 +- docs/components/card.md | 4 ++-- docs/components/forms.md | 2 +- docs/components/modal.md | 2 +- docs/components/navs.md | 4 ++-- docs/components/popovers.md | 4 ++-- docs/components/scrollspy.md | 2 +- docs/components/utilities.md | 6 +++++- 9 files changed, 16 insertions(+), 12 deletions(-) (limited to 'docs/components') diff --git a/docs/components/button-dropdown.md b/docs/components/button-dropdown.md index 87626136a..e2aa98df3 100644 --- a/docs/components/button-dropdown.md +++ b/docs/components/button-dropdown.md @@ -9,7 +9,7 @@ Use any button to trigger a dropdown menu by placing it within a `.btn-group` an {% callout danger %} #### Plugin dependency -Button dropdowns require the [dropdown plugin](../javascript/#dropdowns) to be included in your version of Bootstrap. +Button dropdowns require the [dropdown plugin]({{ site.baseurl }}/components/dropdowns/) to be included in your version of Bootstrap. {% endcallout %} ## Contents diff --git a/docs/components/button-group.md b/docs/components/button-group.md index 12c472b08..5f7886303 100644 --- a/docs/components/button-group.md +++ b/docs/components/button-group.md @@ -4,7 +4,7 @@ title: Button group group: components --- -Group a series of buttons together on a single line with the button group. Add on optional JavaScript radio and checkbox style behavior with [our buttons plugin](../javascript/#buttons). +Group a series of buttons together on a single line with the button group. Add on optional JavaScript radio and checkbox style behavior with [our buttons plugin]({{ site.baseurl }}/components/buttons/#button-plugin). ## Contents diff --git a/docs/components/card.md b/docs/components/card.md index fc5032761..d8205d49e 100644 --- a/docs/components/card.md +++ b/docs/components/card.md @@ -293,7 +293,7 @@ Cards include their own variant classes for quickly changing the `background-col ## Groups -Use card groups to render cards as a single, attached element with equal width and height columns. By default, card groups use `display: table;` and `table-layout: fixed;` to achieve their uniform sizing. However, enabling [flexbox mode](/getting-started/flexbox) can switch that to use `display: flex;` and provide the same effect. +Use card groups to render cards as a single, attached element with equal width and height columns. By default, card groups use `display: table;` and `table-layout: fixed;` to achieve their uniform sizing. However, enabling [flexbox mode]({{ site.baseurl }}/getting-started/flexbox) can switch that to use `display: flex;` and provide the same effect. {% example html %}
@@ -328,7 +328,7 @@ Use card groups to render cards as a single, attached element with equal width a Need a set of equal width and height cards that aren't attached to one another? Use card decks. By default, card decks require two wrapping elements: `.card-deck-wrapper` and a `.card-deck`. We use table styles for the sizing and the gutters on `.card-deck`. The `.card-deck-wrapper` is used to negative margin out the `border-spacing` on the `.card-deck`. -**ProTip!** If you enable [flexbox mode](/layout/flexbox), you can remove the `.card-deck-wrapper`. +**ProTip!** If you enable [flexbox mode]({{ site.baseurl }}/getting-started/flexbox/), you can remove the `.card-deck-wrapper`. {% example html %}
diff --git a/docs/components/forms.md b/docs/components/forms.md index 175927aa8..2f3ba4c83 100644 --- a/docs/components/forms.md +++ b/docs/components/forms.md @@ -13,7 +13,7 @@ Bootstrap provides several form control styles, layout options, and custom compo ## Form controls -Bootstrap's form controls expand on [our Rebooted form styles](/components/reboot/#forms) with classes. Use these classes to opt into their customized displays for a more consistent rendering across browsers and devices. The example form below demonstrates common HTML form elements that receive updated styles from Bootstrap with additional classes. +Bootstrap's form controls expand on [our Rebooted form styles]({{ site.baseurl }}/components/reboot/#forms) with classes. Use these classes to opt into their customized displays for a more consistent rendering across browsers and devices. The example form below demonstrates common HTML form elements that receive updated styles from Bootstrap with additional classes. Remember, since Bootstrap utilizes the HTML5 doctype, **all inputs must have a `type` attribute**. diff --git a/docs/components/modal.md b/docs/components/modal.md index 80b86c116..1e24baf5b 100644 --- a/docs/components/modal.md +++ b/docs/components/modal.md @@ -34,7 +34,7 @@ Always try to place a modal's HTML code in a top-level position in your document {% callout warning %} #### Mobile device caveats -There are some caveats regarding using modals on mobile devices. [See our browser support docs](../getting-started/#support-fixed-position-keyboards) for details. +There are some caveats regarding using modals on mobile devices. [See our browser support docs]({{ site.baseurl }}/getting-started/browsers-devices/#modals-navbars-and-virtual-keyboards) for details. {% endcallout %} ### Static example diff --git a/docs/components/navs.md b/docs/components/navs.md index 486b59433..bfc5bc499 100644 --- a/docs/components/navs.md +++ b/docs/components/navs.md @@ -49,7 +49,7 @@ Classes are used throughout, so your markup can be super flexible. Use `