aboutsummaryrefslogtreecommitdiff
path: root/_includes
AgeCommit message (Collapse)AuthorFilesLines
2013-10-10use https:// for CDN linksChris Rebert2-2/+2
- works when viewing page via file:// - sets a good example security-wise
2013-10-09use CDN for jQuery instead of vendoring it; fixes part of #10989Chris Rebert1-1/+1
2013-10-09use CDN for html5shiv instead of vendoring it; fixes part of #10989Chris Rebert1-1/+1
2013-09-24Disable IE Compatibility Mode in docs, examplesJulian Thilo1-0/+1
...because we don't support it and it may cause problems for people trying to view the docs in IE.
2013-09-23move /assets/ to /docs-assets/ ; fixes #10715Chris Rebert2-15/+15
2013-09-10Remove multiple touch icons and roll with a single oneMark Otto1-3/+0
2013-09-02fixes #10316: Document .active and :active for buttonsMark Otto1-0/+1
2013-09-01fixes #10164: Document .center-block mixin and update CSS to include it as a ↵Mark Otto1-0/+1
class as well
2013-09-01remove unused link from navs sectionMark Otto1-1/+0
2013-08-27Fixes #10082: document `.navbar-form`Mark Otto1-0/+1
* Adds new section to navbar docs with example * Updates example classes for all collapsing navbars so their numbers increment as you scroll
2013-08-24fixes #9887: documents show and hide classesMark Otto1-0/+1
2013-08-23Document .hide-text and .text-hideMark Otto1-0/+1
2013-08-23Rearrange helper classes docs section; add subnav list items to docs side navMark Otto1-0/+6
2013-08-21change `else if` to `else`wangsai1-1/+1
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.