aboutsummaryrefslogtreecommitdiff
path: root/dist/css
AgeCommit message (Collapse)AuthorFilesLines
2013-12-20add new variables for "pagination" to improve support of customizingTobias Lindig3-2/+5
2013-12-19Fixes #11952: Refactor blockquote stylesMark Otto3-11/+17
* Deprecate .pull-right class for .blockquote-reverse * Move font-size change to the parent, blockquote, instead of setting on the p element to allow more flexible content
2013-12-19No leading plusesZlatan Vasović3-2/+3
2013-12-18more license mentionsMark Otto4-4/+4
2013-12-18version bumpMark Otto4-4/+4
2013-12-18buttons should be more mixin friendlyMark Otto1-1/+1
2013-12-18navbars need to use prefixed nav class or they won't work as expectedMark Otto3-14/+14
2013-12-18restore inline block on breadcrumbs and ensure proper code formatting for ↵Mark Otto3-3/+3
readibility
2013-12-18run grunt distMark Otto3-15/+15
2013-12-18add source mapsMark Otto2-2/+2
2013-12-18Merge branch 'master' into css-source-mapsMark Otto2-381/+182
Conflicts: Gruntfile.js
2013-12-18Fixes #11899: Ensure proper margins and .small/small usage for heading tags ↵Mark Otto2-5/+23
(e.g., .h1-.h6)
2013-12-16Fix handling of btn-group placed inside input-group-btn (used for mixing ↵Sebastian Podjasek2-5/+11
dropdowns with normal buttons)
2013-12-15Fixes #10492 again, this time for last row's corners on striped tablesMark Otto2-1/+13
2013-12-15Add new form feedback states, clean up existing form stylesMark Otto2-14/+44
New stuff: * Adds `.has-feedback` and `.form-control-feedback` to show icon-based form feedback to users. Fixes #11836. * Removes the `width: 1em` on `.glyphicon` because it makes it impractical to resize the width of all icons, even if they’re not “empty” (e.g., a simple `.glyphicon { width: 30px; }` wouldn’t work, nor would a class preceeded by a parent class. Clean up: * Sets `width: auto;` on all `.form-control`s within inline forms. * Removes all the inline `select` menu `width` styles because all inputs are now `auto`. * Update form states docs to separate out sections better.
2013-12-15Fixes #11266: Apply a pixel-based line-height to date inputs for iOS 7Mark Otto2-1/+4
2013-12-15Merge branch 'master' into pr/11817Mark Otto2-367/+98
Conflicts: dist/css/bootstrap.min.css less/input-groups.less
2013-12-15Fixes #11402: Updated fix for select.form-control width in inline-formsMark Otto2-1/+7
2013-12-15gruntMark Otto2-4/+4
2013-12-15Fixes #11660: Depcreate small and .small in blockquote in favor of footerMark Otto2-1/+3
2013-12-15revert an earlier change to move the component-animations.less file because ↵Mark Otto2-22/+22
it fubared modal backdrop .fade usage
2013-12-15run grunt on modal scrolling changeMark Otto2-1/+2
2013-12-15Fixes #11770: Move component-animations.less to the utility section of ↵Mark Otto2-22/+22
import list to match Customizer
2013-12-15Restyle the blockquote to not thin text or change line-heightMark Otto2-3/+1
2013-12-14Fixes #11588: Scope font-size to only p elements in a .jumbotron and remove ↵Mark Otto2-6/+4
the supersized line-height from the base class
2013-12-14Fixes #11572: Add contextual background-color classes to match text classes; ↵Mark Otto2-9/+40
move both sets of classes to Helper Classes section of the CSS docs
2013-12-14Fixes #11561: Add float: left; to .form-control within input groups to ↵Mark Otto2-1/+2
prevent IE9 from screwing up placeholder text and select menu arrows
2013-12-14Merge branch 'master' into pr/11435Mark Otto4-2503/+924
Conflicts: dist/css/bootstrap.css dist/css/bootstrap.min.css
2013-12-14Merge branch 'master' into pr/11302Mark Otto4-2191/+966
Conflicts: dist/css/bootstrap.css dist/css/bootstrap.min.css
2013-12-14Merge branch 'master' into pr/11162Mark Otto4-2238/+1092
Conflicts: less/modals.less
2013-12-14Fixes #10921: Add support for input groups within button toolbarsMark Otto2-6/+9
* Floats any `.input-group` within a toolbar * Simplifies the CSS to remove sibling selectors and instead use a negative amrgin on the parent with only `margin-left` See it in action: http://jsbin.com/aGEcUqAT/1/.
2013-12-14Merge branch 'master' into pr/10951Mark Otto4-2531/+1527
Conflicts: dist/css/bootstrap.min.css less/modals.less
2013-12-14Fixes #10370: Improved and deprecated dropdown menu alignment optionsMark Otto2-6/+13
* Removes an old pair of selectors that didn’t properly target the right-aligned navbar alignment of dropdown menus. * Deprecates the `.pull-right` alignment in favor of a more specific and unique class name. * Adds `.dropdown-menu-right` as the new alignment class. This is then mixin-ed into the `.navbar-right.navbar-nav` dropdown menus for auto-alignment. * To override that auto-alignment, use `.dropdown-menu-left` as needed.
2013-12-14Merge branch 'master' into pr/11868Mark Otto2-1/+6
Conflicts: dist/css/bootstrap.min.css
2013-12-13Fixes #10495: Float Glyphicon and set margins in .navbar-brand to ensure ↵Mark Otto2-1/+6
there is no added height because wtf even is CSS
2013-12-13add dist files.Tobias Lindig2-4/+3
2013-12-10hide space characters in input-group-btn to fix segmented buttons double borderTobias Lindig2-2/+3
2013-12-09enable CSS source maps in grunt-contrib-lessChris Rebert4-0/+4
2013-12-09Undo merge of #11778 and use cleancss min optionMark Otto2-2/+16
2013-12-08Merge branch 'pr/11778' into drop_recess_for_lessMark Otto2-16/+2
Conflicts: Gruntfile.js dist/css/bootstrap-theme.min.css dist/css/bootstrap.min.css
2013-12-08Switch to `&:extend(.clearfix all)` for clearfix mixinMark Otto2-227/+42
Original discussion: https://github.com/less/less.js/issues/1437#issuecomment-21383639. Since we’re switching to `grunt-contrib-less`, we can take advantage of newer LESS features than what RECESS supported. Included in that is the ability to `:extend`, and not only that, but `:extend(.mixin-name all)`. By doing so, we remove duplicate CSS for all our elements that were being clearfix-ed. Fixes #8947, #8968, #8991, #9257, #9268, #9291, #9430, #9604, #9686, #9929, #10731, #10793, #11305, #11498, #11533, #11570, #11604, #11652. (dem issues, tho)
2013-12-08Merge branch 'master' into drop_recess_for_lessMark Otto2-1/+3
Conflicts: dist/css/bootstrap.min.css
2013-12-08more closely align property order with recessMark Otto2-324/+324
2013-12-08specify block indent as numeral to prevent fubared media query outputMark Otto1-689/+689
2013-12-08single array == no rogue spacesMark Otto1-411/+0
2013-12-08derp, don't sort min /cc @cvrebertMark Otto2-6009/+2
2013-12-08merge, compileMark Otto4-2578/+7764
2013-12-08Fixes #11786: Nest media queries within print utilities for mixin-friendlinessMark Otto2-1/+4
2013-12-08Minify css with clean-css.XhmikosR2-2/+4
2013-12-08Fixes #11741: Don't set headings font-family again, just use inheritMark Otto2-2/+2