aboutsummaryrefslogtreecommitdiff
path: root/scss
AgeCommit message (Collapse)AuthorFilesLines
2016-10-22Container padding uses per-breakpoint gutter sizes, fixes #19304.Chris Garcia1-3/+9
2016-10-20Use box-shadow mixinPierre-Denis Vanduynslager1-4/+2
2016-10-20Set box-shadow on input if enable-shadows rather than enable-roundedPierre-Denis Vanduynslager1-1/+1
2016-10-20replace `#` with `%23` in SVG data urls with str-replacePatrick H. Lauke1-9/+9
2016-10-20Add str-replace Sass functionPatrick H. Lauke1-0/+16
2016-10-20Create col class for auto flexbox columnsAlan Mooiman1-0/+4
.col-xs-auto, .col-sm-auto, etc.
2016-10-20duplicate navbar-toggler-padding variablesbéla1-2/+0
2016-10-19Use a variable for the default font weights. Fixes #20741Simon Bächler8-14/+17
Websites might use different weights such as medium or thin or use light as default weight instead of normal. Also referenced: #18605 and #16170.
2016-10-19version bump to alpha 5Mark Otto1-1/+1
2016-10-19updated sass variables table of contentsJPeer2641-45/+71
2016-10-19Merge pull request #19890 from twbs/v4-navbarsMark Otto2-17/+76
v4: Navbar improvements
2016-10-18Merge pull request #20933 from twbs/alert-padding-varsMark Otto2-4/+5
Switch to separate vars for alert vertical/horizontal padding
2016-10-18Merge branch 'v4-dev' into v4-navbarsMark Otto2-0/+7
2016-10-18Switch to separate vars for alert vertical/horizontal paddingMark Otto2-4/+5
2016-10-18Add vertical-align utilitiesMark Otto2-0/+7
- Adds six new utils for vertical-align property - Documents the additional classes in the utils docs
2016-10-18remove .navbar-brand > img selector that sets display block (will be ↵Mark Otto1-4/+0
replaced with utils)
2016-10-18more consistent navbar-brand line-heightMark Otto1-0/+1
2016-10-17lintMark Otto1-1/+1
2016-10-17add navbar-brand and navbar-nav styles to the toggleableMark Otto1-6/+23
2016-10-17set the border color on the togglerMark Otto2-1/+4
2016-10-17Fix sass map navbar-toggleableMark Otto1-1/+2
Follow up to 6e8ce0c7dc84c9373f6d760b82bea575cd5358b8. Uses the breakpoint-next mixin to snag the next breakpoint in the media query for proper styling.
2016-10-16Iterate over breakpoints to generate .navbar-toggleable classesMark Otto1-19/+12
- Moves .navbar-brand margin and float to media queries - Replaces the static media queries with an each loop to generate all the needed classes
2016-10-16Merge branch 'v4-navbars' of github.com:twbs/bootstrap into v4-navbarsMark Otto2-4/+42
2016-10-16Merge branch 'v4-dev' into v4-navbarsMark Otto44-374/+513
2016-10-16Revert "Drop the $small-font-size variable for the newer $font-size-sm one"Mark Otto2-1/+3
2016-10-15Remove borders on the top and/or bottom when .list-group-flush is the first ↵Starsam801-0/+12
and/or last child Fully fixes #20395
2016-10-09one more syntax errorMark Otto1-1/+1
2016-10-09fix syntaxMark Otto1-4/+4
2016-10-09Merge branch 'tooltip-arrow' of https://github.com/brnrdog/bootstrap into ↵Mark Otto2-62/+89
brnrdog-tooltip-arrow
2016-10-09Set height on custom selectMark Otto1-0/+2
Matches the changes from #20874 to the regular select element. This is really only necessary for IE and Edge near as I can tell. Fixes #20810.
2016-10-09Match the height of select.form-control with input.form-controlMark Otto1-1/+2
Uses a local variable and some calc love to counteract the border-width (times 2) from the height of the select. Fixes #17194 and nullifies #19967.
2016-10-09Merge branch 'patch-10' of https://github.com/zalog/bootstrap into ↵Mark Otto1-1/+2
zalog-patch-10
2016-10-09Merge pull request #20555 from bardiharborow/updatedepsMark Otto1-1/+1
Update dependencies, including Babel to v6 and zeroUnits fix.
2016-10-09Reset the left and right border on list items for flush list groupsMark Otto1-0/+2
Avoid the resetting of the already set values in #20397. Fixes #20395.
2016-10-09lintingMark Otto1-1/+1
2016-10-09fix focus shadows, if enabledMark Otto1-5/+5
2016-10-09The color is already covered in the first ruleset hereMark Otto1-4/+0
2016-10-09Interpolate the variable so it passes the color properlyMark Otto1-1/+1
2016-10-09remove un-needed commentMark Otto1-1/+0
2016-10-09add transparent border to match .form-control heightMark Otto1-0/+2
2016-10-09Update static form controlMark Otto1-3/+1
- Remove margin-bottom override in favor of .mb-0 utility class - Apply the input line-height styles to match - Remove the min-height to match the input
2016-10-09Ensure input groups behavior appropriately in inline formsMark Otto1-0/+1
Overrides the default width: 100% with an auto. Fixes #20752.
2016-10-09Merge branch 'v4-dev' into v4-navbarsMark Otto25-123/+167
2016-10-09Merge pull request #20867 from twbs/dedupe-sm-varsMark Otto2-3/+1
Drop the $small-font-size variable for the newer $font-size-sm one
2016-10-09Merge pull request #20684 from twbs/v4-utilsMark Otto11-41/+68
v4: The Utilities Update
2016-10-09Merge branch 'v4-dev' into v4-utilsMark Otto20-114/+190
2016-10-09Remove display from the .img-fluid utilityMark Otto2-6/+8
Creating max-width images is not dependent on the display, so setting it is redundant. Cleans up the comments and implementation of the mixin as well. Fixes #20767
2016-10-09Change 940px breakpoint to 960px so that all widths are divisible by 12Mark Otto1-1/+1
Fixes #18510
2016-10-09Change sm grid breakpoint and container max-widthMark Otto1-2/+2
Makes it so that the container is no longer wider than the breakpoint used in the media query. This was never really an issue in rendering as the max-width handled it appropriately, but the mismatch was still incorrect. Fixes #18054
2016-10-09Move from max-width to width for containers, plus a max-width 100%Mark Otto1-1/+2
- Fixes issues between float and flex grid systems where container wouldn't fill the available width in Chrome & FF (but would in Safari) - Fixes #20681 - Fixes #17621 (basically same issue as above issue)