diff --git a/docs/.htmllintrc b/docs/.htmllintrc index e15284536e..d88560faa9 100644 --- a/docs/.htmllintrc +++ b/docs/.htmllintrc @@ -9,6 +9,7 @@ "html-valid-content-model": false, "id-class-ignore-regex": "(onclick|content|[a-z]+([A-Z][a-z])+)", "id-class-style": "dash", + "img-req-src": false, "img-req-alt": false, "indent-style": "spaces", "indent-width": 2, diff --git a/docs/components/carousel.md b/docs/components/carousel.md index ab84bf460d..af00dc526c 100644 --- a/docs/components/carousel.md +++ b/docs/components/carousel.md @@ -186,45 +186,45 @@ Options can be passed via data attributes or JavaScript. For data attributes, ap - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDefaultDescription
NameTypeDefaultDescription
intervalnumber5000The amount of time to delay between automatically cycling an item. If false, carousel will not automatically cycle.
keyboardbooleantrueWhether the carousel should react to keyboard events.
pausestring | boolean"hover"

If set to "hover", pauses the cycling of the carousel on mouseenter and resumes the cycling of the carousel on mouseleave. If set to false, hovering over the carousel won't pause it.

-

On touch-enabled devices, when set to "hover", cycling will pause on touchend (once the user finished interacting with the carousel) for two intervals, before automatically resuming. Note that this is in addition to the above mouse behavior.

ridestringfalseAutoplays the carousel after the user manually cycles the first item. If "carousel", autoplays the carousel on load.
wrapbooleantrueWhether the carousel should cycle continuously or have hard stops.
intervalnumber5000The amount of time to delay between automatically cycling an item. If false, carousel will not automatically cycle.
keyboardbooleantrueWhether the carousel should react to keyboard events.
pausestring | boolean"hover"

If set to "hover", pauses the cycling of the carousel on mouseenter and resumes the cycling of the carousel on mouseleave. If set to false, hovering over the carousel won't pause it.

+

On touch-enabled devices, when set to "hover", cycling will pause on touchend (once the user finished interacting with the carousel) for two intervals, before automatically resuming. Note that this is in addition to the above mouse behavior.

ridestringfalseAutoplays the carousel after the user manually cycles the first item. If "carousel", autoplays the carousel on load.
wrapbooleantrueWhether the carousel should cycle continuously or have hard stops.
@@ -276,20 +276,20 @@ All carousel events are fired at the carousel itself (i.e. at the `
- - Event Type - Description - + + Event Type + Description + - - slide.bs.carousel - This event fires immediately when the slide instance method is invoked. - - - slid.bs.carousel - This event is fired when the carousel has completed its slide transition. - + + slide.bs.carousel + This event fires immediately when the slide instance method is invoked. + + + slid.bs.carousel + This event is fired when the carousel has completed its slide transition. + diff --git a/docs/components/collapse.md b/docs/components/collapse.md index a86678ad18..65b8171bdc 100644 --- a/docs/components/collapse.md +++ b/docs/components/collapse.md @@ -153,26 +153,26 @@ Options can be passed via data attributes or JavaScript. For data attributes, ap - - - - - - + + + + + + - - - - - - - - - - - - + + + + + + + + + + + +
NameTypeDefaultDescription
NameTypeDefaultDescription
parentselectorfalseIf a selector is provided, then all collapsible elements under the specified parent will be closed when this collapsible item is shown. (similar to traditional accordion behavior - this is dependent on the card class). The attribute has to be set on the target collapsible area.
togglebooleantrueToggles the collapsible element on invocation
parentselectorfalseIf a selector is provided, then all collapsible elements under the specified parent will be closed when this collapsible item is shown. (similar to traditional accordion behavior - this is dependent on the card class). The attribute has to be set on the target collapsible area.
togglebooleantrueToggles the collapsible element on invocation
@@ -209,30 +209,28 @@ Bootstrap's collapse class exposes a few events for hooking into collapse functi - - - - + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + +
Event TypeDescription
Event TypeDescription
show.bs.collapseThis event fires immediately when the show instance method is called.
shown.bs.collapseThis event is fired when a collapse element has been made visible to the user (will wait for CSS transitions to complete).
hide.bs.collapse - This event is fired immediately when the hide method has been called. -
hidden.bs.collapseThis event is fired when a collapse element has been hidden from the user (will wait for CSS transitions to complete).
show.bs.collapseThis event fires immediately when the show instance method is called.
shown.bs.collapseThis event is fired when a collapse element has been made visible to the user (will wait for CSS transitions to complete).
hide.bs.collapseThis event is fired immediately when the hide method has been called.
hidden.bs.collapseThis event is fired when a collapse element has been hidden from the user (will wait for CSS transitions to complete).
diff --git a/docs/components/forms.md b/docs/components/forms.md index 44cb1ed0df..52230fa54e 100644 --- a/docs/components/forms.md +++ b/docs/components/forms.md @@ -376,7 +376,7 @@ Be sure to add `.col-form-label` to your `
- +
Checkbox

Heading

Donec sed odio dui. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Vestibulum id ligula porta felis euismod semper. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa.

diff --git a/docs/getting-started/introduction.md b/docs/getting-started/introduction.md index d70a42627c..0ca845a8a5 100644 --- a/docs/getting-started/introduction.md +++ b/docs/getting-started/introduction.md @@ -96,9 +96,7 @@ On the rare occasion you need to override it, use something like the following: {% highlight scss %} .selector-for-some-widget { - -webkit-box-sizing: content-box; - -moz-box-sizing: content-box; - box-sizing: content-box; + box-sizing: content-box; } {% endhighlight %}