aboutsummaryrefslogtreecommitdiff
path: root/components.html
AgeCommit message (Collapse)AuthorFilesLines
2013-08-16docs cleanup on naming to fix #9710Mark Otto1-7/+13
2013-08-15better well content labelsMark Otto1-2/+2
2013-08-15fixes #9632: button spacing in narrow viewportsMark Otto1-153/+159
2013-08-15reorder alertsMark Otto1-4/+4
2013-08-15reorder and cleanup progress bar displayMark Otto1-18/+18
2013-08-15Fixes #9617: consistent variation order, add .label-primaryMark Otto1-18/+41
2013-08-15fixes #9616Mark Otto1-1/+1
2013-08-14add call out to fix #9569Mark Otto1-0/+5
2013-08-14Ordered breadcrumbsBas Bosman1-8/+8
2013-08-14rm `action` attr from highlighted example code tooChris Rebert1-1/+1
fixup to e61c71e0775f676c3e404e7a8853949c78bc4511
2013-08-13Overhaul navbar alignment (.pull-) utilities (fixes #9440)Mark Otto1-5/+6
Now navbars have their own float utility classes, mixin-ed versions of `.pull-left` and `.pull-right`. * Removed chained `.navbar-nav.pull-right` * Added `.navbar-left` and `.navbar-right` as mixins of the default float utilities, but only above the `@grid-float-breakpoint` to match the new navbar behavior * Updated components docs to match the new changeas * Added callout about component alignment here to explain the new classes
2013-08-13fix up broken tests by removing empty attrMark Otto1-1/+1
2013-08-13Merge branch '3.0.0-wip' into bs3_navbar_overhaulMark Otto1-63/+136
Conflicts: dist/css/bootstrap.min.css
2013-08-13Merge branch '3.0.0-wip' into bs3_drop_accordion_for_panelMark Otto1-0/+40
Conflicts: dist/css/bootstrap.min.css
2013-08-13enable button groups in vertical button groupsMark Otto1-1/+11
2013-08-13derpMark Otto1-1/+31
2013-08-12Drop the accordion for the panelMark Otto1-15/+45
* Deletes the accordion.less file * Extends the panel to be collapsible with our JS plugin * Supports panel color variations
2013-08-12Merge branch '3.0.0-wip' into bs3_navbar_overhaulMark Otto1-15/+16
Conflicts: components.html dist/css/bootstrap.min.css
2013-08-12Navbar refactorMark Otto1-279/+202
* Now responsive by default (fits better with mobile-first approach) * Requires `.nav-header` to group `.navbar-brand` and `.navbar-toggle` for proper mobile display. * Changed `.nav-collapse` to `.navbar-collapse` * Simplified examples in docs
2013-08-12Components docs: Dropdowns section: add .sr-only toggle buttons so ↵Chris Rebert1-6/+9
aria-labelledby validates
2013-08-12add alt text to <img>s in components.htmlChris Rebert1-4/+4
2013-08-12add src attribute to holder.js-powered <img>s so that they validateChris Rebert1-15/+15
use `data:` URL of empty invalid PNG: src="data:image/png;base64,"
2013-08-12add ARIA roles to Dropdown examples in Components docsChris Rebert1-26/+26
2013-08-12give navbar forms non-empty `action`sChris Rebert1-3/+3
2013-08-12rm unnecessary blank id attributeChris Rebert1-1/+1
2013-08-12add alt text to media object <img>sChris Rebert1-10/+10
2013-08-12add alt text to thumbnail <img>sChris Rebert1-5/+5
2013-08-12Newfangled input and button group sizing (fixes #9295)Mark Otto1-12/+45
Instead of applying `.btn-` or `.input-` to individual elements in button and input groups, we now have new sizing classes to keep your markup a little leaner. * Add `.input-group-sm` or `.input-group-lg` to your `.input-group` to replicate `.input-sm` and `.input-lg`, respectively. * Add `.btn-group-xs`, `.btn-group-sm`, or `.btn-group-lg` to your `.btn-group` to replicate `.btn-xs`, `.btn-sm`, and `. btn-lg`, respectively. Both sets of new sizing classes simply use the existing individual sizing classes as mixins, so customization of them is automatically inherited when compiling.
2013-08-12Merge pull request #9384 from BBosman/aria-hiddenMark Otto1-2/+2
Add missing aria-hidden attribs to close buttons
2013-08-12Add missing aria-hidden attribs to close buttonsBas Bosman1-2/+2
2013-08-12Aria role search instead of formBas Bosman1-6/+6
2013-08-12fixes #9266 manually on account of list group file reorganizationMark Otto1-16/+8
2013-08-12fixes #9310: alerts aren't dismissable by default, now requires ↵Mark Otto1-16/+23
.alert-dismissable if you need a close button
2013-08-11Give forms and search fields proper ARIA rolesKevin Suttle1-15/+15
http://blog.paciellogroup.com/2013/02/using-wai-aria-landmarks-2013/#tablex http://www.w3.org/TR/wai-aria/roles#form http://www.w3.org/TR/wai-aria/roles#search
2013-08-11fix broken components page, also likely from @kevinsuttle's #9332Mark Otto1-7/+7
2013-08-11fix indentationMark Otto1-2/+2
2013-08-10Use nav for proper HTML5 ARIA role mappingKevin Suttle1-57/+59
http://www.w3.org/html/wg/drafts/html/master/sections.html#the-nav-element http://dev.w3.org/html5/spec/sections.html#the-nav-element http://blog.paciellogroup.com/2013/02/using-wai-aria-landmarks-2013/#tablex
2013-08-10Merge pull request #9245 from jlaswell/patch-1Mark Otto1-1/+1
Update components.html
2013-08-08Update components.htmljlaswell1-1/+1
Keeping bs-examples consistent with code provided.
2013-08-08Changed "Standard pagination" to "Default pagination"Guillermo González de Agüero1-1/+1
2013-08-07Fixed link to JavaScript buttons pluginGuillermo González de Agüero1-1/+1
2013-08-06Improve accessibility (Section 508, WCAG)adamjacobbecker1-51/+75
This PR significantly improves Bootstrap's accessibility for users of assistive technology, such as screen readers. Some of the these changes add additional markup to the source examples, but we believe that the sacrifice in readability is worth achieving more widespread usage of accessibility best-practices. What was done - Added lots of [WAI-ARIA attributes](http://www.w3.org/WAI/intro/aria) - Added `.sr-only` helper class, that is only readable by screen readers (and invisible for all other users). This lets us - make progress bars and paginations accessible to screen reading users. - Advised users to always use label elements. For inline forms, they can hide them with `.sr-only` - Added 'Skip navigation' link - Added "Accessibility" section to getting-started.html. What *wasn't* done - Contrast issues (twbs#3572) - Tooltips (twbs#8469) - Documentation re: usage of icons, since they now live in a separate repo Major props to all that contributed: @bensheldon, @jasonlally, @criscristina, and @louh. Feel free to chime in, guys, if I've left anything out.
2013-08-06Fix #9132, but in the correct branchChris Rebert1-1/+1
People, don't PR against `gh-pages` please!
2013-08-06remove repeated 'pagination' class in code exampleRakhat Jabagin1-1/+1
2013-08-05Update labels to include a base classMark Otto1-9/+9
* Builds on the new button styles by requiring a `.btn-default` for the regular, gray labels * Updates components examples to show new stuff
2013-08-05Enable scrollable responsive nav barMark Otto1-1/+43
Fixes #9007 in a hopefully decent way
2013-08-04trivial docs grammar improvementsChris Rebert1-1/+1
2013-08-03adjust description & give source for nested `.btn-group`s exampleChris Rebert1-4/+19
2013-08-03components.html: rm disconnected sentence fragmentChris Rebert1-1/+1
2013-08-03add .btn-xs to .btn-group exampleChris Rebert1-0/+21