aboutsummaryrefslogtreecommitdiff
path: root/_includes
AgeCommit message (Collapse)AuthorFilesLines
2013-08-19fix customizerfat1-0/+1
2013-08-19Fix remainder of panel default examples and reorder nav linksMark Otto1-1/+1
2013-08-19Add subnav link for panels with tablesMark Otto1-0/+1
2013-08-19Copy edits, fix classes for demo, add subnav linksMark Otto1-3/+14
2013-08-18Fix broken link and wrong labelMark Otto1-1/+1
2013-08-18Add responsive tables with help of `.table-responsive` wrapperMark Otto1-0/+1
2013-08-18Merge branch '3.0.0-wip' into bs3_homepageMark Otto1-2/+1
Conflicts: customize.html dist/css/bootstrap.min.css
2013-08-18Refactor alerts to have a base class, but no default class, thus requiring a ↵Mark Otto1-2/+1
modifier class at all times
2013-08-18Merge branch '3.0.0-wip' into bs3_homepageMark Otto4-3/+18
Conflicts: customize.html examples/justified-nav/justified-nav.css
2013-08-18update nav for getting started migrationMark Otto1-1/+7
2013-08-18fixes two type-os in glyphiconsBruno Amaral1-1/+1
2013-08-18Merge branch '3.0.0-wip' into bs3_restore_glyphiconsMark Otto1-0/+3
Conflicts: dist/css/bootstrap.min.css
2013-08-18updates to migrationiatek1-0/+3
2013-08-18Merge branch '3.0.0-wip' into bs3_restore_glyphiconsMark Otto1-0/+1
2013-08-18remove old glyphicons mentionMark Otto1-3/+0
2013-08-18docs layout and alignment refinementMark Otto1-0/+8
2013-08-18bunch of updates to customizerfat1-0/+1
2013-08-17Merge branch '3.0.0-wip' into bs3_homepageMark Otto1-1/+0
Conflicts: dist/css/bootstrap.min.css
2013-08-17move customizer onto gistsfat1-1/+0
2013-08-17Merge branch '3.0.0-wip' into bs3_homepageMark Otto4-46/+41
Conflicts: dist/css/bootstrap.min.css getting-started.html
2013-08-16finish up second pass through docs nav, headings, organization, naming, etc ↵Mark Otto4-39/+39
(another run through at #9710)
2013-08-16docs cleanup on naming to fix #9710Mark Otto1-7/+2
2013-08-16Docs cleanup for v3 prepMark Otto1-1/+1
2013-08-15use getbootstrap for tweet buttonMark Otto1-1/+1
2013-08-15fixes #9663: third part, document the resetsMark Otto1-1/+1
2013-08-15hella examples fixing, mostly navbars and lots of work on grids exampleMark Otto1-0/+3
2013-08-15improve table classes' snippets and orderingMark Otto1-1/+1
2013-08-15update to include nav link and mo betta docs on that last commitMark Otto1-0/+3
2013-08-14fix #9454: add grid docs about responsive column clearingMark Otto1-0/+1
2013-08-12Merge branch '3.0.0-wip' into bs3_navbar_overhaulMark Otto1-2/+2
Conflicts: components.html dist/css/bootstrap.min.css
2013-08-12Navbar refactorMark Otto2-13/+11
* 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-12drop iframe attributes for CSS stylingMark Otto1-2/+2
2013-08-12social-buttons.html: drop 'px' from height+width attrs per HTML5Chris Rebert1-2/+2
2013-08-12Merge pull request #9394 from twbs/valid-github-btn-htmlChris Rebert1-2/+2
_includes/social-buttons.html: escape ampersands in URLs so HTML validates
2013-08-12_includes/social-buttons.html: escape ampersands in URLs to fix HTML ↵Chris Rebert1-2/+2
validation error
2013-08-12Newfangled input and button group sizing (fixes #9295)Mark Otto1-0/+2
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-12update to rename rc2Mark Otto1-1/+1
2013-08-12fixes #9310: alerts aren't dismissable by default, now requires ↵Mark Otto1-0/+1
.alert-dismissable if you need a close button
2013-08-12fixes #9317: document media queriesMark Otto1-0/+1
2013-08-11Merge branch '3.0.0-wip' of github.com:twbs/bootstrap into 3.0.0-wipfat1-1/+1
2013-08-11rebuild + first bit of customizer urlsfat1-0/+8
2013-08-12Move quotes in nav-main.htmlvsn4ik1-1/+1
2013-08-11Ensure proper use and location of role="banner"Kevin Suttle1-2/+2
http://blog.paciellogroup.com/2013/02/using-wai-aria-landmarks-2013/#tablex http://www.w3.org/TR/wai-aria/roles#banner
2013-08-10Use nav for proper HTML5 ARIA role mappingKevin Suttle1-3/+3
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-06Improve accessibility (Section 508, WCAG)adamjacobbecker3-3/+7
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-06add third party support section to the docsMark Otto1-1/+4
2013-08-05Enable scrollable responsive nav barMark Otto1-0/+2
Fixes #9007 in a hopefully decent way
2013-08-05Fixes #8150: add `.static-form-control` for vertical alignment of static ↵Mark Otto1-0/+1
form text - Also fixes the vertical alignment of labels in horizontal layouts on account of the recent button and input padding changes - Also changes the vertical alignment of the checkboxes and radios in horizontal forms
2013-08-05update docs nav to use new stuffMark Otto1-1/+1
2013-08-05Remove type attribute of tag "script".vsn4ik3-5/+4
In HTML5 in tag script, the type attribute is no longer required. The default value is "text/javascript". http://www.w3.org/TR/html5/scripting-1.html#attr-script-type