aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2013-12-05Merge pull request #11718 from KostyaTretyak/oncev3.0.3Mark Otto1-0/+1
Added link to Ukrainian translation website (in about.html)
2013-12-05Added links to Ukrainian translation websitekostyatretyak1-0/+1
2013-12-04one last gruntMark Otto1-1/+1
2013-12-04Merge pull request #11714 from ZDroid/redundant-commentMark Otto1-1/+0
Remove redundant, duplicate comment
2013-12-05Remove redundant, duplicate commentZlatan Vasović1-1/+0
2013-12-04Merge branch 'master' of github.com:twbs/bootstrapMark Otto3-266/+599
2013-12-04Fixes #11610: Add @grid-float-breakpoint-max to better link navbar behavior ↵Mark Otto3-6/+11
across viewports and improve customization. Also addresses #10371, #10395, and #10465.
2013-12-04Merge pull request #11671 from XhmikosR/updatesMark Otto3-266/+599
Update 3rd party asset libraries
2013-12-04Merge branch 'master' into gradient-prefix-cleanupMark Otto20-66/+210
Conflicts: dist/css/bootstrap.min.css docs-assets/js/raw-files.js
2013-12-04gruntMark Otto1-2/+2
2013-12-04Fixes #11712: Better support for .table-responsive within .panel'sMark Otto4-2/+11
2013-12-04Fixes #11436: mention in docs that .container isn't nestable; update docs to ↵Mark Otto1-1/+2
mention width, not max-width
2013-12-04Merge pull request #11710 from JoahG/bootstrap-thumbMark Otto1-0/+0
Updates Jumbotron thumbnail
2013-12-04Merge pull request #11709 from mdxs/patch-1Chris Rebert1-1/+1
Dropping unused variable in dropdown.js
2013-12-04Add a migration tip for .label-important to .label-dangerCyrus Stoller1-0/+4
2013-12-04Updates Bootstrap thumbnailJoah Gerstenberg1-0/+0
2013-12-04Dropping unused variable in dropdown.jsmdxs1-1/+1
Dropping an unused variable in the Dropdown function inside the `dropdown.js` code. There are no new/changed unit tests, as there are no feature/bug changes requiring new test cases. For the record: I agree to dual-license this contribution under the Apache 2 and MIT licenses.
2013-12-04Merge pull request #11705 from cyrusstoller/migration-guideChris Rebert1-0/+4
Add a migration tip for .label to .label-default
2013-12-04Add a migration tip for .label to .label-defaultCyrus Stoller1-0/+4
2013-12-03Merge branch 'master' into responsive-visibility-tableMark Otto12-59/+117
Conflicts: dist/css/bootstrap.min.css
2013-12-03Merge pull request #11697 from twbs/btn-xs-10979Mark Otto4-7/+10
fix .btn-group-xs portion of #10979
2013-12-03fix broken link in CONTRIBUTING.mdChris Rebert1-1/+1
2013-12-03Merge pull request #11701 from twbs/sauce-labsChris Rebert5-49/+104
switch to Sauce Labs for our cross-browser JS unit testing needs
2013-12-03switch to Sauce Labs for our cross-browser JS unit testing needsChris Rebert5-49/+104
Fixes #11087
2013-12-03fix invalid HTML in components.htmlChris Rebert1-1/+1
type="button" doesn't make sense for an <a>
2013-12-03fix .btn-group-xs portion of #10979Chris Rebert4-7/+10
2013-12-03-moz and old webkit syntax removed for gradients based onawebdeveloper6-97/+10
http://caniuse.com/#search=grad
2013-12-03add <table> case to responsive-visibility mixin; see #10056Chris Rebert4-4/+72
2013-12-03gruntChris Rebert4-4/+5
2013-12-03add comment regarding #11598Chris Rebert1-1/+1
2013-12-03Merge pull request #11691 from twbs/xs-grid-docs-fixChris Rebert1-4/+2
document that XS grid supports offsets and push/pull
2013-12-03account for #11050 in the docsChris Rebert1-4/+2
2013-12-03reference root issue in explanatory commentChris Rebert1-1/+1
2013-12-03add .gitattributes file to enforce Unix newlines within the repoChris Rebert1-0/+8
2013-12-03Gruntfile.js: Set line feed char to '\n' to get same result on all platforms.Tobias Lindig1-0/+3
2013-12-03Merge pull request #11690 from lipis/patch-2Chris Rebert1-1/+0
Get rid of empty line before the last closing bracket
2013-12-03Get rid of empty line before the last closing bracketLipis1-1/+0
2013-12-02Update filesaver.js to the latest git.XhmikosR1-146/+376
2013-12-02Update jszip.js to the latest git.XhmikosR1-14/+21
2013-12-02Update holder.js to v2.2.XhmikosR1-106/+202
2013-12-01Merge pull request #10662 from kevinlisota/thumbnail-imagesMark Otto1-1/+2
add responsive CSS to hyperlinked images when thumbnail caption markup used
2013-12-01Merge pull request #11667 from neilhem/masterMark Otto1-5/+5
replace double quotation marks with single in code examples
2013-12-02replace double quotation marks with single in code examplesRakhat Jabagin1-5/+5
2013-12-01Merge branch 'master' into pr/11412Mark Otto68-997/+1029
Conflicts: dist/js/bootstrap.min.js
2013-12-01grunt distMark Otto1-1/+1
2013-12-01add commentMark Otto1-1/+1
2013-12-01Merge pull request #11499 from bassjobsen/patch-3Mark Otto1-1/+1
fix navbar dropdown window resize bug
2013-12-01bump version numbers to 3.0.3Mark Otto24-41/+41
2013-12-01gruntMark Otto1-1/+1
2013-12-01Rework navbar padding and margins for right aligned last-child elementsMark Otto3-19/+36
This slight reworking of the navbar spacing was brought about by a problem noted in #11530: use of `.navbar-form.navbar-right` leaves an extra 15px of space on the right. Here’s what’s new: * Removed the `padding` on `.navbar-collapse` within static top, fixed top, and fixed bottom navbars. Meaning, it’s still there for the default navbar. This was the root cause of the extra 15px padding for navbar forms. * As part of this, I also replaced the existing negative margin overrides for last-child elements with more contextual ones within their sub-components. Overall not too different, but should be more effective now and easier to work with now. For example of new changes, see http://jsbin.com/odeSiSo/1/.