aboutsummaryrefslogtreecommitdiff
path: root/docs/_includes
AgeCommit message (Collapse)AuthorFilesLines
2015-11-24bump versionMark Otto1-1/+1
2015-11-15Docs: Add missing `tabindex="-1"` & `role="dialog"` to some `.modal`sChris Rebert1-3/+3
Refs https://github.com/twbs/bootlint/pull/314 [skip sauce]
2015-11-14that @cvrebert lifestyleMark Otto1-1/+1
2015-11-14fixes #17003Mark Otto1-0/+11
2015-11-11Update verb tenses to proper tense for feature deprecationsKevin Kirsche2-2/+2
X-Ref: https://github.com/twbs/bootstrap/commit/fce30b57e2fbe750cdebf1794d3917f3176d06ce
2015-11-08Merge pull request #16965 from zacechola/document_icon_helpersMark Otto1-0/+5
Call out `.icon-next`, `.icon-prev` alternative classes for Carousel
2015-10-30Merge pull request #18080 from twbs/csp-progressChris Rebert1-0/+5
Add docs regarding .progress, inline style attrs, and CSP
2015-10-29Add docs regarding .progress, inline style attrs, and CSP; closes #17785Chris Rebert1-0/+5
[skip sauce]
2015-10-29Run `grunt.XhmikosR1-1/+1
[skip sauce]
2015-10-23Adding subresource hashes to CDN links.Chris Barry1-3/+3
In Firefox 43 and Chrome 45 there will be support for Subresource Iintegrity (SRI). More information here: https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity Closes #17729 by merging a tweaked version of it.
2015-10-13Clarify that .panel-heading overrides font-size of <hN> tagsPhilip Masek1-1/+1
Closes #17533 Closes #17735
2015-10-10Added missing new lines at EOF.Baraa Hamodi1-1/+1
2015-10-07Be pedantically correct; refs #17809Chris Rebert2-2/+2
[skip sauce]
2015-10-07Tooltips on <table>s should use container: body ; fixes #17809Chris Rebert2-4/+4
2015-09-30Add CSS portion of IE10 viewport bug workaround to docsChris Rebert1-0/+1
Refs #17337
2015-09-28Docs - clarify purpose of CSS class .in to .fadeTommy Kelly1-1/+1
2015-09-05Separated link not actually separatedpsychobunny1-0/+2
2015-08-10Adds callout for `.icon-next`, `.icon-prev`Zac Echola1-0/+5
2015-08-04Merge branch 'master' of https://github.com/twbs/bootstrapMark Otto4-30/+72
2015-08-04fixes #16902: remove the .container-fluid from the grid system in modal ↵Mark Otto1-45/+41
example since it's doubling up padding
2015-08-04Merge pull request #16560 from supergibbs/multiple-button-input-groupsMark Otto2-5/+43
Multiple button input groups
2015-08-04Merge pull request #16818 from zacechola/fix_16805Mark Otto2-25/+29
Move help block docs up page, add `.help-block` to validation example
2015-08-04Help with issues like #16823 by mentioning where to download example source codeMark Otto1-0/+2
2015-07-31simpler footer with no social buttons, fewer linksMark Otto2-50/+7
2015-07-26Add a local jQuery fallback.XhmikosR1-0/+1
Shouldn't really happen, but China for example has blocked Google so this should help.
2015-07-17remove all instances of .bs-docs-grid in grid docs since it's unused. ↵Mark Otto1-85/+73
nullifies #16838
2015-07-13Move help block docs up page, add `.help-block` to validation exampleZac Echola2-25/+29
2015-07-09Add example with visible <label> and input group addonPatrick H. Lauke1-1/+13
Also, include visible <label> as a suggestion in the accessibility callout.
2015-07-04Update Twitter's address in examples.Matt Kantor1-4/+4
They're no longer on Folsom St.
2015-07-01Document that Tab show method is asyncChris Rebert1-1/+1
[skip sauce]
2015-07-01Document that Collapse show,hide,toggle methods are async; fixes #16746Chris Rebert1-3/+3
[skip sauce]
2015-06-30Add Methods section to Popovers nav menu in docsChris Rebert2-1/+2
[skip sauce]
2015-06-19Added *.min.map to whats-included.vsn4ik1-1/+3
2015-06-18Re-order popover elements in docsKevin Kirsche1-4/+4
X-Ref #13969
2015-06-18Clarify what's being hovered /cc @kkirscheMark Otto1-1/+1
2015-06-18Merge pull request #16632 from kkirsche/patch-15Mark Otto1-1/+1
Clarify that <fieldset> only uses the disabled attribute
2015-06-18Merge pull request #16563 from dbkaplun/dl-horizontal-breakpointMark Otto1-0/+5
Adds @dl-horizontal-breakpoint
2015-06-15Clarify that <fieldset> only uses the disabled attributeKevin Kirsche1-1/+1
Fix #16632
2015-06-11Slightly expand accessible modals calloutPatrick H. Lauke1-1/+1
to include a note about `role="document"`
2015-06-11Add role="document" to modal itselfPatrick H. Lauke1-6/+6
Initial fix to generalise use of modals. Generally, true role="dialog" containers would require only forms/controls as content, with all other text correctly and explicitly associated via aria-labelledby/aria-describedby and similar...but as authors use modals also as generic overlays, this extra role is required to get AT (particularly NVDA) out of "forms" mode and reenable reading keys
2015-06-02Merge pull request #16571 from patrickhlauke/generalize-dropdownsPatrick H. Lauke9-184/+184
generalize dropdowns / drop role="menu"
2015-06-02generalize dropdowns / drop role="menu"Patrick H. Lauke9-184/+184
as role="menu" is a very specific (and strict) ARIA pattern for desktop-like application menus, and our dropdowns are often used as pure navigation dropdowns, this change abandons ARIA menus for a more open-ended and light-weight approach (see http://heydonworks.com/practical_aria_examples/#submenus and http://www.w3.org/WAI/tutorials/menus/flyout/#improve-screen-reader-support-using-wai-aria) note that in dropdown.js, switched to now target ``.dropdown-menu`` instead of ``role["menu"]`` - this also prevents bootstrap scripts from "bleeding" into non-bootstrap components on the same page. also removed the ``role=["listbox"]`` part, which appears to be vestigial/unused (only place in bootstrap that uses that role are carousels, and their key handling is done separately)
2015-05-30Merge pull request #16484 from kkirsche/patch-13Mark Otto1-1/+1
ScrollSpy requires non-body elements to have height and overflow…
2015-05-30[Close #16441] ScrollSpy requires non-body elements to have height and paddingKevin Kirsche1-1/+1
[Close #16441] ScrollSpy requires non-body elements to have height and padding
2015-05-30Adds @dl-horizontal-breakpointDan Kaplun1-0/+5
2015-05-29ensure divider list items have role="separator"Patrick H. Lauke8-43/+43
http://www.w3.org/TR/wai-aria/roles#separator
2015-05-29A little cleanupSupergibbs1-3/+0
2015-05-29Clarified documentation about input groups and added an example ofSupergibbs2-2/+43
multiple buttons
2015-05-26Merge pull request #16504 from kkirsche/patch-8Chris Rebert1-1/+1
Clarify the bs-callout on multiple open modals
2015-05-26Update source maps linkMorton Fox1-1/+1