aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2015-04-16Merge branch 'v4' of https://github.com/twbs/derpstrap into v4Mark Otto76-2422/+3053
2015-04-16collapsing navbar toolsMark Otto11-14/+63
2015-04-16start stubbing out a new reboot section and fileMark Otto14-360/+837
2015-04-16grunt docsChris Rebert2-11/+11
2015-04-16Update ZeroClipboard and remove Copy buttons when Flash is unavailableMark Tareshawty3-30/+29
Fixes #16269. Closes #16301 by merging a rebased version of it.
2015-04-16edit comments a bitMark Otto1-12/+15
2015-04-16rename scaffolding to rebootMark Otto2-1/+1
2015-04-16Move .img- classes to new _images.scss; move hr to _type.scssMark Otto4-41/+43
2015-04-16Merge pull request #101 from twbs/institutional-memoryMark Otto3-6/+23
Revert "Images are responsive by default"
2015-04-16Redo all our callouts with the custom callout pluginMark Otto24-297/+368
- Replaces manual use of .bd-callout with {% callout [type] %} - Rearranged some callouts for proximity to others - Turned long lists of callouts--like those on tooltips, plugings, etc--into a list because holy shit that's overwhelming
2015-04-16remove marginsMark Otto1-2/+0
2015-04-16fix example class in pluginMark Otto1-1/+1
2015-04-16break down docs scss into imports, hell yeahMark Otto20-1540/+1501
2015-04-16complete the docs scss tocMark Otto1-4/+32
2015-04-16redo the anchor css in scss, comment out unused code, add our own styles /cc ↵Mark Otto3-35/+73
@xhmikosr
2015-04-16start toc in docs scss fileMark Otto1-3/+14
2015-04-16rename classes from .bs-docs and .bs to .bdMark Otto38-371/+386
2015-04-15Merge branch 'v4' of https://github.com/twbs/derpstrap into v4Mark Otto13-42/+421
2015-04-15more docs nav changesMark Otto4-10/+15
2015-04-15footer button alignmentMark Otto1-6/+1
2015-04-15footer copyMark Otto1-3/+6
2015-04-15gruntMark Otto8-10/+390
2015-04-15tweak alignment and spacingMark Otto1-7/+2
2015-04-15fix spacer varsMark Otto2-2/+5
2015-04-15don't boost first paragraph on mobileMark Otto1-5/+2
2015-04-15fix .highlight spacingMark Otto1-2/+3
2015-04-14Update docs to account for #15755Chris Rebert1-1/+0
2015-04-14stub out the need for a homepage getting started sectionMark Otto1-2/+23
2015-04-14affix plugin does not work within a pulled/pushed columnJoshua Tauberer1-0/+1
This documents the limitation discussed in https://github.com/twbs/bootstrap/issues/12126: > When using column reordering and using the affix-plugin on an element positioned with push, the affix plugin doesn't work correctly - the element affected by the affix plugin is positioned to the left even when the element is in a column positioned on the right. Seems to affect Safari (tested in version 8) only. That issue has (unfortunately) been closed, so this at least documents the behavior.
2015-04-14grunt and docsMark Otto7-165/+7
2015-04-14more utilitiesMark Otto1-8/+96
2015-04-14nuke shadows for nowMark Otto1-2/+2
2015-04-13redo sidenavMark Otto11-52/+86
2015-04-13Merge branch 'v4' of https://github.com/twbs/derpstrap into v4Mark Otto1-13/+0
2015-04-13docs derpMark Otto9-30/+8
2015-04-13remove pre styles -- see #4547Mark Otto1-3/+0
2015-04-13Merge pull request #105 from twbs/beautiful-colorsChris Rebert1-2/+0
Print with all the colors of the wind
2015-04-13Merge pull request #106 from twbs/href-printChris Rebert1-11/+0
Remove half-assed inclusion of link URLs (hrefs) when printing
2015-04-13automatic `grunt dist`Bootstrap's Grunt bot6-4/+6
2015-04-13Merge pull request #16279 from twbs/fix-16276Chris Rebert1-0/+1
Make .btn in .btn-toolbar float:left too
2015-04-13Fixes #16270.Ray McMahan1-1/+1
Badges now appeared vertically centered next to text. Previously, badges appeared to be somewhat lower than tall text such as h1's next to it.
2015-04-13automatic `grunt dist`Bootstrap's Grunt bot5-6/+6
2015-04-12Merge pull request #16256 from twbs/fix-16247Chris Rebert2-3/+3
Add px unit to perspective property value
2015-04-13automatic `grunt dist`Bootstrap's Grunt bot6-8/+54
2015-04-12Merge pull request #16086 from twbs/fix-15925Chris Rebert4-13/+27
Reset text/font properties more thoroughly for tooltips+popovers
2015-04-12Turns out http://crbug.com/475128 affects all OSesChris Rebert1-1/+1
2015-04-12Make .btn in .btn-toolbar float:left too; fixes #16276Chris Rebert1-0/+1
[skip sauce] [skip validator]
2015-04-11Fix existing radio button unit testPatrick H. Lauke1-2/+2
2015-04-11Don't preventDefault radio buttonsPatrick H. Lauke1-3/+3
as this breaks keyboard navigation for radio button toggles (see https://github.com/twbs/bootstrap/issues/16223)
2015-04-11Remove half-assed inclusion of link URLs (hrefs) when printingChris Rebert1-11/+0
* Relative URLs were output as-is, which is suboptimal or even confusing for end-users * Ditto for fragment identifiers * Outputting long URLs inline with prose isn't good UX JavaScript could potentially help with this (e.g. http://alistapart.com/article/improvingprint). However, we're not currently interested in trying to tackle the hard problem of fancy print stylesheets/views (particularly given the level of cross-browser inconsistency when it comes to printing). So let's just keep things simple, vanilla, and unsurprising, which should also make it easy for others to add their own print fanciness on top of Bootstrap.