aboutsummaryrefslogtreecommitdiff
path: root/dist/css/bootstrap.css
AgeCommit message (Collapse)AuthorFilesLines
2013-08-12fixes #9258: no more float bug with full-width grid columns by removing ↵Mark Otto1-8/+4
float on all .col-*-12 classes
2013-08-12drop the class on the button group toggles CSS (alt fix to #9297)Mark Otto1-2/+2
2013-08-12undo the grid max-width boundary because it makes offsets kinda borked ↵Mark Otto1-6/+0
(you'd have to set twice, for medium and large, in most cases--and that sucks)
2013-08-12fixes #9392: no need for width auto on inline/navbar form controls given ↵Mark Otto1-6/+0
inline-block on parent form group
2013-08-12Newfangled input and button group sizing (fixes #9295)Mark Otto1-0/+40
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.
2013-08-12inherit font-size in code when inside preMark Otto1-0/+1
2013-08-12fixes #9382: inline forms now require use of .form-group for proper ↵Mark Otto1-35/+42
alignment of all form controls
2013-08-12Drop background-clip and background-size mixins since they have no prefixes ↵Mark Otto1-3/+1
anyway
2013-08-12fix #9239 by restoring old ie8 responsive img fooMark Otto1-0/+4
2013-08-12fixes #9266 manually on account of list group file reorganizationMark Otto1-4/+4
2013-08-12fixes #8835: make it so active list group items aren't dependent on an <a> tagMark Otto1-13/+19
2013-08-12fixes #9310: alerts aren't dismissable by default, now requires ↵Mark Otto1-8/+12
.alert-dismissable if you need a close button
2013-08-12Media query (grid and responsive utilities) overhaulMark Otto1-56/+405
Grid classes have been changed to account for a fourth set of classes, meaning we now have XS, S, M, and L options. Specifically, we made the following changes: * Renames `.col-` to `.col-xs-` * Adds `.col-md-` for devices 992px wide and up * Remaps `.col-lg-` for devices 1200px wide and up Alongside that, we've updated our media queries to better handle advanced grid layouts: * All column classes now kick in when they hit a `min-width`, undoing the #9128 fix in https://github.com/twbs/bootstrap/commit/db45a60cc86190a060f0baf0b3961cb c690f3a65 * All column offsets, pushes, and pulls are scoped to an appropriate range, meaning a `min-width` and `max-width` (thanks for the idea, @eratzlaff) We've also modified the widths of our grid containers for the small device grid (now a max 720px instead of 728px) and large device grid (now a max 1140px instead of 1170px) to avoid horizontal scrollbar problems in Firefox (likely due to box-sizing, which is why we didn't see it in 2.x). Similarly, we've updated the responsive ultility classes to match the new four media query approach of the grid system. That means we've: * Added new `.visible-xs` and `.hidden-xs` classes * Reassigns visible and hidden classes for small, medium, and large to matching grid system media queries * Updates docs examples to match grid system and account for fourth utility range ----- Fixes the following: * #9135: fourth grid tier * #9302: undoes previous range change for small grid system, so no need to update any docs here * #8755: consistent grid and responsive utilities schemas) * #9195, #9216, and #9227: no more horizontal scrollbars
2013-08-11simplify padding in list groups and margins on badges withinMark Otto1-3/+2
2013-08-11Merge branch '3.0.0-wip' of github.com:twbs/bootstrap into 3.0.0-wipMark Otto1-98/+128
Conflicts: dist/css/bootstrap.min.css
2013-08-11Drop the font-weight on panel labels since heading elements already get itMark Otto1-1/+0
2013-08-11Follow up commit: fix collapse clearing and navbar brand/nav spacingMark Otto1-0/+4
2013-08-11Refactor navbars to simplify thingsMark Otto1-20/+6
* `.navbar-brand` is no longer centered, thus removing need for max-width and a few lines of code * Clear floats of `.navbar-brand` in the `.nav-collapse` like we did in 2.x, thus simplifying some clearing and other things. * Restyle the `.navbar-toggle` button to align it's bars up with the text and flow of the document. * Restyle the `.navbar-brand` to not use padding on left/right as to avoid negative margin and other fuckery. This limits the ability to put a bg color on the brand, but I think that's fine for now.
2013-08-11rebuild + first bit of customizer urlsfat1-98/+128
2013-08-11addressing #9189 manually, part 5: don't bother with a .label font-weight ↵Mark Otto1-1/+1
var and let's just use bold because windows hates 500
2013-08-11fixes #8983Jacob Thornton1-2/+1
2013-08-11fixes #8900: nuke empty space between panel heading and list groupMark Otto1-0/+8
2013-08-11fixes #9241: enable collapsing for labels, in addition to badges, when emptyMark Otto1-0/+4
2013-08-08fix 'Calcuated' typo & run grunt; thanks @FagnerMartinsBrackChris Rebert1-3/+3
fixes typo introduced in 2b6ec389876fac116ae2a152e47be321632dd9ba
2013-08-06Improve accessibility (Section 508, WCAG)adamjacobbecker1-0/+11
This PR significantly improves Bootstrap's accessibility for users of assistive technology, such as screen readers. Some of the these changes add additional markup to the source examples, but we believe that the sacrifice in readability is worth achieving more widespread usage of accessibility best-practices. What was done - Added lots of [WAI-ARIA attributes](http://www.w3.org/WAI/intro/aria) - Added `.sr-only` helper class, that is only readable by screen readers (and invisible for all other users). This lets us - make progress bars and paginations accessible to screen reading users. - Advised users to always use label elements. For inline forms, they can hide them with `.sr-only` - Added 'Skip navigation' link - Added "Accessibility" section to getting-started.html. What *wasn't* done - Contrast issues (twbs#3572) - Tooltips (twbs#8469) - Documentation re: usage of icons, since they now live in a separate repo Major props to all that contributed: @bensheldon, @jasonlally, @criscristina, and @louh. Feel free to chime in, guys, if I've left anything out.
2013-08-06fixes #8959: only negative indent rows within .container (prevents ↵Mark Otto1-2/+2
horizontal scroll on full-width pages)
2013-08-06update use of mixins and add bg-colors where necessaryMark Otto1-9/+0
2013-08-06Fixes #8749: prevent navbar nav from overlapping navbar toggleMark Otto1-1/+5
2013-08-06Fix #9174: pad bottom of navbar collapsed content and clear floated contentsMark Otto1-0/+25
2013-08-06grunt dist on previous commitMark Otto1-0/+4
2013-08-06Fixes #9145: Fix tooltip opacityMark Otto1-11/+11
Update tooltips to not use RGBa colors so IE8 can have tooltips, too (means we're now using `opacity`).
2013-08-05Scope tablet classes to tablets range onlyMark Otto1-1/+1
Fixes #9128
2013-08-05Merge branch '3.0.0-wip' into bs3_alerts_default_classMark Otto1-8/+8
Conflicts: dist/css/bootstrap.min.css
2013-08-05fixes #8647: remove focus outline on :focus of buttons in button groupsMark Otto1-3/+6
2013-08-05remove dupe border-boxMark Otto1-3/+0
2013-08-05Merge branch '3.0.0-wip' of https://github.com/saas786/bootstrap into ↵Mark Otto1-2/+2
saas786-3.0.0-wip Conflicts: customize.html less/alerts.less less/badges.less less/button-groups.less less/buttons.less less/carousel.less
2013-08-05Remove dupe hover background colorMark Otto1-1/+0
2013-08-05Update labels to include a base classMark Otto1-1/+9
* Builds on the new button styles by requiring a `.btn-default` for the regular, gray labels * Updates components examples to show new stuff
2013-08-05Fixes #8732: unfucks disabled fieldset form example with form groupsMark Otto1-1/+0
2013-08-05Enable scrollable responsive nav barMark Otto1-0/+10
Fixes #9007 in a hopefully decent way
2013-08-05Merge branch 'pullright' of https://github.com/liuyl/bootstrap into ↵Mark Otto1-8/+3
liuyl-pullright Conflicts: dist/css/bootstrap.min.css
2013-08-05Fixes #8150: add `.static-form-control` for vertical alignment of static ↵Mark Otto1-1/+5
form text - Also fixes the vertical alignment of labels in horizontal layouts on account of the recent button and input padding changes - Also changes the vertical alignment of the checkboxes and radios in horizontal forms
2013-08-05Fixes #8872: widen the carousel indicators to prevent wrappingMark Otto1-2/+2
2013-08-05Fixes #8795, a reoccurence of #1969Mark Otto1-0/+14
2013-08-05More button updatesMark Otto1-17/+33
- Fixes #9113 (caret colors in dropdown buttons) - Darken borders around buttons for contrast in button groups
2013-08-05Fixes #8770: mobile-first (stacked by default) horizontal dlsMark Otto1-32/+29
2013-08-05Fixes #8786 (part 2): new default button stylesMark Otto1-10/+16
Also relevant: http://www.youtube.com/watch?v=Ldyx3KHOFXw
2013-08-05Fixes #8786 (part 1): darken hover states on buttonsMark Otto1-12/+12
2013-08-05Clean up mixins, fix #9100 (no ms-keyframes)Mark Otto1-9/+0
- Spacing tweaks in the general mixins - Add comments to transform mixins about IE support - Remove `-ms-keyframes` because only IE10+ supports it, and without prefix
2013-08-05fixes #8832 and #8823: remove max-width from .navbar-brand when not mobileMark Otto1-0/+1