aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2016-12-28lintingMark Otto1-1/+1
2016-12-28Redo button statesMark Otto2-65/+35
Trying to simplify our output here by revamping these selectors. We overcomplicated things by setting hover styles for nearly every state (disabled and active included), and we set them in the wrong order. This commit does the following: - Reorders states so disabled comes before active, thereby removing the need to set disabled-active styles. - Removes all focus and hover styles from disabled states as those will naturally inherit from the default button state. - Renamed `.open` to `.show` to fix dropdown toggle highlighting. - Tweaked some indendation in the Sass.
2016-12-28fixes #21415 by moving disabled .btn-link color to the default stateMark Otto1-1/+2
2016-12-28update to migration docsMark Otto1-31/+16
2016-12-28Rip numberQuy1-1/+1
2016-12-27follow up to the fix for #20506 with some docs examples of input groups in ↵Mark Otto1-0/+30
button toolbars
2016-12-27inline-flex and width: 100% for stacked/vertical variationMark Otto1-2/+2
shoutout to @Starsam80 for the fix
2016-12-27auto size input groups, fixes #20506Mark Otto1-0/+4
2016-12-27remove commented out codeMark Otto1-1/+0
2016-12-27lintingMark Otto1-1/+1
2016-12-27revamp button group with flexboxMark Otto2-42/+34
2016-12-27update example with brand and new utilMark Otto1-1/+2
2016-12-27forgot to add display flex to the navbar, so utils weren't applyingMark Otto1-0/+1
2016-12-27Fix grammatical/typo errorsQuy1-3/+3
2016-12-27gruntMark Otto12-25/+25
2016-12-27update click state when hiding so can be shown again by trigger. fixes #16732Max Beatty2-0/+25
2016-12-27use varMark Otto1-1/+1
2016-12-27fix inline checksMark Otto1-1/+3
2016-12-27add some varsMark Otto2-12/+18
2016-12-27sure we only need the two mixins, but this ensures folks don't run into ↵Mark Otto1-2/+1
missing mixin errors down the line
2016-12-27Update bootstrap-grid.scssMark Otto1-1/+2
2016-12-27Update bootstrap-reboot.scssMark Otto1-1/+1
2016-12-27move custom down so folks can reassign var values and use other varsMark Otto1-1/+1
2016-12-27Don't show `.bd-*` classes to the user (#21443)Starsam801-1/+11
* Don't show `bd-*` classes to the user * Add comments and another regex
2016-12-27Document how to break equal width cols to multiple rowsMark Otto1-0/+16
Fixes #21287
2016-12-27bump jquery and grunt-sassMark Otto1-3/+3
plus shx? :shrug:
2016-12-27gruntMark Otto16-16/+18
2016-12-27fixes #21445Mark Otto2-14/+3
remove broken example class from grid docs
2016-12-26more flexbox docsMark Otto1-2/+45
2016-12-26follow up to #21436 to add docs for the .flex-row-reverse , ↵Mark Otto1-48/+100
.flex-column-reverse, and .flex-wrap-reverse
2016-12-26gruntMark Otto8-6/+202
2016-12-26Add more flex utilitiesStarsam801-31/+34
2016-12-26Rename tags to badges in commentsQuy1-4/+4
2016-12-26Remove Meteor install instructions.Bardi Harborow2-7/+0
2016-12-25gruntMark Otto10-32/+66
2016-12-25Fixes #20586Mark Otto1-1/+1
Use pixels instead of rem units for focus box-shadow on custom controls so that IE11, Edge, and Win FF screw it up less
2016-12-25throw some margin utils to fix spacingMark Otto1-1/+1
2016-12-25Use calc() on .col-form-label padding calculationsMark Otto1-6/+6
Fixes #21135. There's a height mismatch here because we're setting padding on the labels, while inputs get padding *and* a top+bottom border. This now uses calc to determine the exact height needed to match labels to inputs.
2016-12-25Replaces #21270 with proper fixMark Otto1-1/+1
Rather than overriding this just on inline form examples, this should be for all static form controls to match inputs.
2016-12-25space that out a smidgeMark Otto1-1/+1
2016-12-25vertically center .form-group contents in inline formsMark Otto1-0/+1
fixes broken inline form example mentioned in #21407
2016-12-25use flex and direction to do the stacked controls instead of float hacksMark Otto1-2/+3
This also fixes #21280. Previously, we were using float and clear on the individual controls, but that meant a computer height of `0` for the parent `.custom-controls-stacked`. No more problem after using flexbox though.
2016-12-25move custom checks/radios to inline-flexMark Otto1-1/+1
2016-12-25gruntMark Otto18-328/+355
2016-12-25Use variables for the width/height classesStarsam802-9/+12
2016-12-25Clean up _spacing.scss a little bitStarsam801-20/+16
2016-12-25Remove some leftover IE9/flex stuffStarsam805-1392/+3
2016-12-25lintingMark Otto1-2/+2
2016-12-25flex the footer and include some margin magicMark Otto1-2/+7
- we need to set margin for space between footer buttons as flexbox doesn't render HTML spaces like inline-block does - flexbox doesn't have collapsing margins or anything, so we hack it with some :not(:first-child) and :not(:last-child) action
2016-12-25flex the modal header so we can remove custom stylesMark Otto2-17/+14
updates the dom order in our docs to match (floated content comes first, but no need for that in flexbox)