aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2015-03-28fixes #15830: properly reset border-radius on list items in collapsing panel ↵Mark Otto4-2/+12
groups
2015-03-29automatic `grunt dist`Bootstrap's Grunt bot6-8/+12
2015-03-28Merge pull request #15956 from twbs/input-group-sizes-glyphiconMark Otto1-2/+4
Input group sizes: Properly position `.form-control-feedback`
2015-03-29automatic `grunt dist`Bootstrap's Grunt bot6-20/+20
2015-03-28Merge pull request #16159 from twbs/input_sizingMark Otto4-10/+34
Fixes #15074
2015-03-28Merge pull request #16174 from twbs/bang_table_utilityMark Otto1-1/+1
Update .visible* classes to use !important on table elements
2015-03-28Match all other responsive utilities and use important on the display: tableMark Otto1-1/+1
2015-03-28Merge branch 'master' into input_sizingMark Otto15-59/+363
Conflicts: dist/css/bootstrap.css.map dist/css/bootstrap.min.css
2015-03-28Revert "Images are responsive by default"Chris Rebert3-6/+23
This reverts commit d29f851e827db27fb42573f14003bb018c037342. Making <img>s responsive by-default without opt-in can severely break third-party widgets such as Google Maps. This was an acknowledged problem in Bootstrap v2 (see https://github.com/twbs/bootstrap/issues/1506 ) and was fixed in v3 by requiring the .img-responsive class for explicit opt-in (see 09cdee2f03aaad5c5a767fbec2e3896ad3d1f980). The situation hasn't really changed since then. The responsive-by-default approach hasn't become any more suitable in the intervening time. So let's avoid having this regress in v4. :-)
2015-03-28automatic `grunt dist`Bootstrap's Grunt bot6-28/+280
2015-03-28Merge pull request #16154 from patrickhlauke/focus-active-disambiguationPatrick H. Lauke1-2/+18
Darker style focus/hover on active buttons
2015-03-27Merge pull request #16171 from zachleat/patch-1Chris Rebert1-1/+1
There is no jshint:src task
2015-03-27There is no jshint:src taskZach Leatherman1-1/+1
2015-03-27Merge pull request #16167 from patrickhlauke/tabpanel-documentationPatrick H. Lauke1-2/+2
Remove wrong role="tabpanel" from docs
2015-03-27Remove wrong role="tabpanel" from parent containerPatrick H. Lauke1-2/+2
As per discussion on https://github.com/w3c/wai-wcag-quickref/issues/2 and #13554
2015-03-27automatic `grunt dist`Bootstrap's Grunt bot6-14/+24
2015-03-27Merge pull request #16160 from monoblaine/masterPatrick H. Lauke1-1/+2
Make .bg-variant adjust :focus color in addition to :hover color
2015-03-26Merge pull request #16162 from twbs/jscs-fn-declHeinrich Fenkart1-0/+1
JSCS: Add "disallowSpacesInFunctionDeclaration"
2015-03-26JSCS: Add "disallowSpacesInFunctionDeclaration"Heinrich Fenkart1-0/+1
Valid: function a() {} Invalid: function a () {}
2015-03-26Make .bg-variant adjust :focus color in addition to :hover colorSerhan Apaydın1-1/+2
2015-03-26automatic `grunt dist`Bootstrap's Grunt bot2-2/+2
2015-03-25Merge pull request #16089 from max-b/jumbotron-font-sizeChris Rebert2-1/+2
Jumbotron: Putting heading font size in variables to allow for easier overrides
2015-03-26automatic `grunt dist`Bootstrap's Grunt bot6-14/+24
2015-03-25Make .text-emphasis-variant adjust :focus color in addition to :hover colorSerhan Apaydın1-1/+2
Closes #16047 by merging a tweaked version of it.
2015-03-26automatic `grunt dist`Bootstrap's Grunt bot5-5/+8
2015-03-25Merge pull request #16092 from twbs/pointer-events-none-aChris Rebert2-2/+11
Only disable pointer-events on disabled <a> btns
2015-03-25Fixes #15074: Manually handle input sizing in form groups instead of using ↵Mark Otto4-10/+34
mixins because nesting
2015-03-26automatic `grunt dist`Bootstrap's Grunt bot4-10/+4
2015-03-25Merge pull request #16158 from twbs/fix-16020Chris Rebert4-45/+14
remove redundant aria-hidden usage from Modals
2015-03-25Merge pull request #16157 from twbs/fix-16069Chris Rebert1-0/+7
Document how to disable transitions in jQuery plugins
2015-03-25Merge pull request #16156 from twbs/fix-16115Chris Rebert1-27/+10
Properly document $(...).tab('show') method
2015-03-25rm redundant aria-hidden usage from Modals; fixes #16020Chris Rebert4-45/+14
2015-03-25Document how to disable transitions in jQuery plugins; fixes #16069Chris Rebert1-0/+7
[skip sauce]
2015-03-25Properly document $(...).tab('show') method; fixes #16115Chris Rebert1-21/+4
[skip sauce]
2015-03-25docs: #myTab => #myTabs, to slightly increase clarityChris Rebert1-8/+8
2015-03-25Darker style focus/hover on active buttonsPatrick H. Lauke1-2/+18
Currently, hovering with mouse or setting focus on a button which is active has same styling as on a non-active button. This results in problems for keyboard users, who set focus on a toggle and activate it, but cannot visually see that their action had any effect. Ditto for mouse users hovering over a toggle and clicking it. This adds an explicit additional style for focus/hover on active buttons. Note that this does not address issues of browser focus remaining on a button after a mouse click (e.g. #13971), as this will likely require extra JavaScript to fix.
2015-03-25Tooltip/popover: Fix auto placement to use viewportAdrien Jarthon1-6/+5
Currently, auto placement is using the container dimensions (if provided) or the element's parent to determine where to open the tooltip: ```javascript var $container = this.options.container ? $(this.options.container) : this.$element.parent() var containerDim = this.getPosition($container) ``` This is quite broken in fact, because the parent element could be just a small div outside the element for example, leading in a totally random placement (placing the tooltip on top even if there's no room). And the container can also be outside of the viewport. This fix simply uses the viewport instead, that's the purpose of the viewport actually, to position the tooltip. So the auto placement should use it to find where there's more room. By default this is body, which is good.
2015-03-24add missing <code> within docs heading for `.modal('handleUpdate')`Chris Rebert1-1/+1
2015-03-24Merge pull request #15987 from twbs/fix-15972Chris Rebert4-39/+39
add role="button" to a[data-toggle="collapse"]
2015-03-24Merge pull request #16140 from patrickhlauke/toggle-navigation-aria-expandedPatrick H. Lauke2-12/+12
Add aria-expanded to navbar toggles
2015-03-24Add aria-expanded and aria-controls to docs navbar togglePatrick H. Lauke1-2/+2
Also, use id rather class name for the navigation, as it's unique and lets us use correct aria-controls (and without the use of id, aria-expanded does not get updated correctly by the current dropdown toggle script)
2015-03-24Add aria-expanded to navbar togglesPatrick H. Lauke1-10/+10
2015-03-23Merge pull request #16136 from patrickhlauke/docs-tooltipPatrick H. Lauke1-16/+22
Callout for tooltips and keyboard/AT accessibility
2015-03-23Move all tooltip callouts into appropriate sectionPatrick H. Lauke1-20/+22
Before, most callouts hierarchically came under Examples > Four directions, which is not appropriate. Now they're under Markup
2015-03-23Callout for tooltips and keyboard/AT accessibilityPatrick H. Lauke1-0/+4
Include callout explicitly mentioning tooltips should only be added to focusable elements. Closes #16134
2015-03-21automatic `grunt dist`Bootstrap's Grunt bot4-4/+8
2015-03-21Fix #16072: Clicking into input field within dropdown no longer closes the ↵Emmanuel Bourgerie2-0/+40
dropdown Closes #16073 by merging it
2015-03-21Fix #16117 more permanently/genericallyChris Rebert1-1/+1
2015-03-21Merge pull request #16117 from vsn4ik/inc_quick_startPatrick H. Lauke1-1/+1
Increment quick start options to six in readme.md
2015-03-21Increment quick start options to sixvsn4ik1-1/+1
[skip validator] [skip sauce]