aboutsummaryrefslogtreecommitdiff
path: root/docs/examples
AgeCommit message (Collapse)AuthorFilesLines
2015-12-08Update examples to account for #18185Chris Rebert4-6/+6
[skip sauce]
2015-12-08fixes #17887: restore hover/focus for cover navMark Otto1-0/+5
2015-12-07fixes #18293: clean up sticky stuffMark Otto4-40/+36
2015-12-07Merge branch 'v4-dev' of https://github.com/twbs/bootstrap into v4-devMark Otto2-2/+2
2015-12-06Remove .navbar-form from example pages; refs #18087Chris Rebert2-2/+2
[skip sauce]
2015-12-06fix up navbar examples with proper coloringMark Otto2-4/+4
2015-11-29Merge pull request #18340 from twbs/responsive-pullsChris Rebert7-9/+9
Add responsive float classes
2015-11-26Add responsive float classes; fixes #13690Chris Rebert7-9/+9
2015-11-22Remove non-responsive text alignment classesChris Rebert2-3/+3
These can be replaced by their `.text-xs-*` parallels. This also avoids any complications from interactions between the responsive and non-responsive classes. (e.g. `<div class="text-left text-md-right">`) Refs #18300 [skip sauce]
2015-11-14gruntMark Otto1-0/+3
2015-10-24Switch to jQuery 2.1.4.XhmikosR13-13/+13
Now that we don't support IE 8 it's safe to do that.
2015-10-19Anonymous table bug is still present in Safari 9.0, but should be fixed in ↵Chris Rebert1-1/+1
the next version
2015-10-13Merge pull request #17817 from kkirsche/patch-29Mark Otto1-1/+1
Remove double bottom border on sub header in dashboard example
2015-10-11docs/examples/cover/cover.css: Fix "inheritence" typoChris Rebert1-1/+1
2015-10-08Remove double bottom border on sub headerKevin Kirsche1-1/+1
The table includes a border between the two making this unnecessary
2015-10-06Add shrink-to-fit viewport directivePatrick H. Lauke18-18/+18
Fixes potential problems with iOS9's new viewport behavior - see for instance https://forums.developer.apple.com/thread/13510
2015-10-01Make tooltip-viewport example work.XhmikosR1-1/+2
[ci skip]
2015-09-20Remove unneeded trailing whitespace.XhmikosR2-2/+2
[ci skip]
2015-09-06Fixes to examplesMaurice Wahba5-9/+9
2015-09-06Add missing jQuery local fallback.XhmikosR3-0/+3
[ci skip]
2015-09-06Use jQuery 1.11.3 everywhere.XhmikosR3-3/+3
[ci skip]
2015-09-06Clean up inclusion of IE-specific JS files.XhmikosR18-54/+24
Move them to footer, and remove duplicate ones. [ci skip]
2015-09-05Merge pull request #17369 from twbs/v4-dev-xmr-docs-imgXhmikosR1-0/+0
Compress images.
2015-09-05Update Holder.js to v2.8.2.XhmikosR1-9/+9
[ci skip]
2015-09-02Merge pull request #17168 from kkirsche/patch-19Mark Otto2-7/+7
v4 - Rename .img-responsive class to .img-fluid
2015-09-01Fix Navbar at top of v4 Offcanvas exampleKevin Kirsche1-17/+7
Fix #17173
2015-09-01Rename .img-responsive class to .img-fluidKevin Kirsche2-7/+7
Fix #17166
2015-09-01Merge pull request #17353 from dmbaughman/v4-navbar-exampleMark Otto1-11/+26
v4 - Updated default navbar example to use responsive navbar
2015-08-29Fix several erroneous links in docs.Gupocca4-6/+6
Related to #17314.
2015-08-27Losslessly compress images.XhmikosR1-0/+0
Before: 1,28 MB (1.351.880 bytes) After: 1,27 MB (1.341.411 bytes) [ci skip]
2015-08-26Updated default navbar example to use responsive navbarDavid Baughman1-11/+26
2015-08-26Bump year in jumbotron exampleAnton Vlasenko1-1/+1
2015-08-25For now, add hacky <div id="navbar"> to avoid HTML validation error in ↵David Baughman1-9/+11
Dashboard example Closes #17319 by merging it.
2015-08-24Replace remaining instances of defunct .visible* classes in docsChris Rebert3-3/+3
.visible-xs(-block) => .hidden-sm-up Fixes #17263. [skip sauce]
2015-08-22slightly better dashboard exampleMark Otto1-23/+17
2015-08-22Remove dropped btn-xs and btn-group-xs from docsvsn4ik1-1/+1
2015-08-21update broken holder.min.js linkKevin Imig1-1/+1
update broken holder.min.js link
2015-08-21Docs: Update all dropdowns to new HTML structureHeinrich Fenkart1-9/+9
2015-08-14Massive cleanupMark Otto1-2/+0
- Simpler main nav on all pages - Back to purple masthead on homepage instead of dark graphite - Active link styles on the main nav - Cleaned up sidebar nav - New docs layout name - Homepage copy edits - Updated bright purple docs color
2015-08-05simple layout for examplesMark Otto1-1/+1
2015-08-04Merge branch 'master' into v4mMark Otto11-4/+20
2015-08-04replace holder.js references in dashboard example with placeholder gif. ↵Mark Otto1-4/+4
fixes #16699
2015-07-26Add a local jQuery fallback.XhmikosR14-4/+14
Shouldn't really happen, but China for example has blocked Google so this should help.
2015-06-18Merge branch 'master' into v4Mark Otto11-17/+16
2015-06-13album example addedMark Otto2-13/+24
2015-06-08Use new gradient syntax in justified nav example; fixes #16598Kevin Kirsche1-2/+1
Closes #16599 by merging a tweaked version of it.
2015-06-02generalize dropdowns / drop role="menu"Patrick H. Lauke7-24/+24
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-29ensure divider list items have role="separator"Patrick H. Lauke7-10/+10
http://www.w3.org/TR/wai-aria/roles#separator
2015-05-27Merge branch 'v4' of https://github.com/twbs/derpstrap into v4Mark Otto1-15/+0
Conflicts: dist/css/bootstrap.css dist/css/bootstrap.css.map docs/assets/css/docs.min.css
2015-05-10Update jQuery to v1.11.3.XhmikosR14-14/+14