| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2019-11-28 | Release v4.4.1.v4.4.1 | XhmikosR | 1 | -1/+1 | |
| 2019-11-26 | Release v4.4.0 (#29735)v4.4.0 | XhmikosR | 210 | -26/+28 | |
| 2019-11-26 | Backport #29734 | XhmikosR | 1 | -1/+1 | |
| justify-content:between ⇒ justify-content:space-between | |||||
| 2019-11-25 | Update anchor.js to v4.2.1 (#29662) | XhmikosR | 1 | -3/+3 | |
| 2019-11-25 | Fix icons link. | XhmikosR | 1 | -1/+1 | |
| 2019-11-02 | Update modal.md (#29621) | XhmikosR | 1 | -1/+1 | |
| Fix typo | |||||
| 2019-11-02 | backport #29516: added animation when modal backdrop is static | Johann-S | 1 | -1/+64 | |
| 2019-11-02 | Add configurable button text wrapping (#29554) | Martijn Cuppens | 1 | -0/+4 | |
| 2019-11-02 | Backport #29544 | XhmikosR | 1 | -0/+3 | |
| Add link to Icons site in our docs | |||||
| 2019-11-01 | Fix highlighting. | XhmikosR | 1 | -4/+4 | |
| v4-dev is using Jekyll, not Hugo. | |||||
| 2019-11-01 | Convert v4-dev calc() left overs to add/subtract functions | Martijn Cuppens | 1 | -3/+3 | |
| 2019-11-01 | Doc tweaks. | Mark Otto | 1 | -2/+2 | |
| 2019-11-01 | Add add and subtract function | ysds | 1 | -0/+38 | |
| 2019-10-28 | Link to versioned RFS repo (#29598) | Martijn Cuppens | 1 | -1/+1 | |
| 2019-10-14 | Variable card height (#29462) | Martijn Cuppens | 1 | -1/+1 | |
| 2019-10-08 | IE image fix (#29483) | Martijn Cuppens | 1 | -1/+1 | |
| 2019-09-26 | Use 180 for the grid-cards placeholder images' height. | XhmikosR | 1 | -12/+12 | |
| 2019-09-26 | Grid card example tweaks (#29409) | Shohei Yoshida | 1 | -4/+4 | |
| Stack in cards in one column when < md | |||||
| 2019-09-26 | Add responsive example | ysds | 1 | -0/+14 | |
| 2019-09-26 | Allow override default col width | ysds | 1 | -0/+14 | |
| 2019-09-26 | Cleanup | Mark Otto | 1 | -0/+14 | |
| - Rename and move the variable to variables file - Move code to the grid file - Use the mixin to generate our own classes - Wrap in a grid classes enabled conditional - Document the mixin | |||||
| 2019-09-26 | Move margins, and equal height via utility example | Mark Otto | 1 | -19/+65 | |
| 2019-09-26 | First pass at .row-cols classes | Mark Otto | 2 | -0/+136 | |
| Trying to find a new way to do responsive card decks while not locking ourselves into the cards themselves. My thinking here is we can easily control the column (.col) width by the parent, but I don't know how many we need (have 0-5 now) across each breakpoint. This works for cards so far, and I think could get us equal height, too. | |||||
| 2019-09-26 | carousel.md: Remove duplicate bd-example div. (#29341) | XhmikosR | 1 | -34/+32 | |
| The example shortcode already adds this. | |||||
| 2019-09-26 | docs: remove swatches for theme colors. (#29327) | XhmikosR | 2 | -8/+1 | |
| Use the built-in utilities instead. | |||||
| 2019-09-26 | theming.md: bring `:root` up to par with Scss. (#29323) | XhmikosR | 1 | -1/+1 | |
| Also, add a warning in _root.scss so that we don't miss it again. | |||||
| 2019-09-26 | blog example: remove unused CSS. (#29316) | XhmikosR | 1 | -19/+0 | |
| 2019-08-27 | fixed minor typo (#29291) | tracyjordan | 1 | -1/+1 | |
| 2019-08-27 | docs: fix tap targets (#29272) | Martijn Cuppens | 1 | -0/+1 | |
| 2019-08-27 | Backport #29251 | Johann-S | 3 | -0/+18 | |
| allow to pass popper.js configuration for tooltip/popover and dropdown | |||||
| 2019-08-17 | Clarify order documentation (#29252) | Martijn Cuppens | 1 | -6/+6 | |
| 2019-08-17 | Fix redirects. (#29254) | XhmikosR | 4 | -4/+4 | |
| 2019-08-17 | Responsive containers (follow-up to #29095) (#29118) | Mark Otto | 4 | -35/+132 | |
| * Follow-up to #29095 This PR fixes the responsive containers that were added in #29095, originally stubbed out in #25631. Apologies to @browner12 for getting that wrong. Fixes #25631. * update navbar as well because we cannot reset all containers uniformly * Update navbars example to include container-xl example to ensure containers match * rewrite responsive containers docs, add table of max-widths * Update container docs - Move table up to the intro - Remove the container example because it's actually hella confusing - Update and link to grid example as a demo instead | |||||
| 2019-08-17 | v4/v5: Add responsive containers (#29095) | Mark Otto | 4 | -41/+58 | |
| * create responsive containers provide more flexibility and allow the user to determine when containers switch from fluid to fixed width. * fix the base container code this commit fixes the non-media portion of the generated CSS. I learned about the `@extends` directive and was able to put it to good use. I create a new temporary map that contains all the main `$container-max-widths` and join it to our 2 special cases of 'xs' and 'fluid'. Then we loop through that and, with the appropriate infixes, extend our placeholder * formatting for style forgot to run my tests before the last push, i think these are better. * finish incomplete comment * fix the responsive containers using the `@extend` directive I was able to clean up this code * fix responsive containers in the navbar mostly we just look through all of our breakpoints so we can include all of the responsive container classes in the tweaks we have to do for the navbar (redeclaring flex properties, don't double up on padding, etc) * Simplify container extends * Simplify navbar containers * Rearrange, add comments, ensure everything is nested in $enable-grid-classes * Reduce new CSS by using attribute selector We avoid using `@extend` whenever possible, and this is more readable * Update _grid.scss * Update _navbar.scss * Add docs for responsive containers, redesign the container layout page * Add to the Grid example | |||||
| 2019-08-03 | Disallow crawling on Netlify. (#29194) | XhmikosR | 4 | -5/+7 | |
| 2019-07-31 | Add missing role="document" (#29172) | Herst | 1 | -6/+6 | |
| 2019-07-31 | Fix minor typo (#29168) | Patrick H. Lauke | 1 | -1/+1 | |
| 2019-07-31 | Minor: fix sentence (#29160) | Patrick H. Lauke | 1 | -1/+1 | |
| "Popovers whose both title..." | |||||
| 2019-07-31 | Update scrollspy.md (#29156) | Brian Juul Andersen | 1 | -1/+1 | |
| Fixed minor grammatical error: "... the best method get scroll ..." => "... the best method to get scroll ..." | |||||
| 2019-07-31 | Update docs vendor libs (#29134) | XhmikosR | 2 | -9/+12 | |
| * Update bs-custom-file-input.min.js to v1.3.2. * Update anchor.min.js to v4.2.0. | |||||
| 2019-07-31 | Backport #29121. | XhmikosR | 1 | -1/+0 | |
| Remove https://glyph.smarticons.co/ from list of suggestions. The domain is now for sale and is triggers warnings in Firefox and Chrome | |||||
| 2019-07-31 | Apply `at-mixin-argumentless-call-parentheses: always` stylelint rule for v4 ↵ | Martijn Cuppens | 2 | -4/+4 | |
| mixins | |||||
| 2019-07-31 | Apply `at-mixin-argumentless-call-parentheses: always` stylelint rule | Martijn Cuppens | 3 | -5/+5 | |
| 2019-07-31 | Fix Typos across Bootstrap repository (#29082) | Kitten King | 1 | -2/+2 | |
| 2019-07-31 | Remove iconic and add feather icons. (#29079) | XhmikosR | 1 | -2/+1 | |
| 2019-07-30 | Disable the `!default` rule for our docs variables. | XhmikosR | 1 | -9/+10 | |
| 2019-07-30 | Use the background shorthand. | XhmikosR | 1 | -5/+1 | |
| 2019-07-30 | docs: use the `escape_svg` function. | XhmikosR | 2 | -1/+2 | |
| 2019-07-30 | Backport "Use escape-svg() function (#29077)" | Martijn Cuppens | 1 | -1/+5 | |
| Adapted for v4-dev. | |||||
| 2019-07-30 | SVGs: lowercase hex values. | XhmikosR | 4 | -5/+5 | |
