aboutsummaryrefslogtreecommitdiff
path: root/site/content/docs/5.1
AgeCommit message (Collapse)AuthorFilesLines
2022-03-19v5.2.0 migration updates (#36038)Mark Otto1-18/+27
2022-03-19Fix migration guide typos (#36040)Ryan Buckley1-2/+2
* Correct font-weight semibold utility class name * Tiny sentence correction
2022-03-18Convert progress bars to CSS variables (#35962)Mark Otto1-1/+9
* Convert progress bars to CSS variables * bundlewatch
2022-03-17Add another list-group snippet exampleMark Otto2-1/+62
2022-03-17Convert toasts to CSS variables (#35961)Mark Otto1-1/+9
* Convert toasts to CSS variables * bundlewatch
2022-03-17Convert spinners to CSS variables (#35960)Mark Otto1-1/+19
* Convert spinners to CSS variables * bundlewatch
2022-03-14Rewrite docs tables in Markdown with table shortcode (#31337)Mark Otto20-1949/+462
Co-authored-by: XhmikosR <[email protected]> Co-authored-by: GeoSot <[email protected]>
2022-03-13Remove duplicate entry in migration.mdSabrus1-2/+0
2022-03-13Add v5.1.0 to migration guide, update v5.2.0 additionsMark Otto1-4/+65
2022-03-13Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)Mark Otto1-1/+1
* Add additional root variables, rename $variable-prefix to $prefix - Adds new root CSS variables for border-radius, border-width, border-color, and border-style - Adds new root CSS variables for heading-color, link-colors, code color, and highlight color - Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss - Updates $mark-padding to be an even pixel number - Renames $variable-prefix to $prefix throughout * Bundlewatch
2022-03-12Convert added in badges to shortcode (#36007)Mark Otto14-16/+16
2022-03-11Convert breadcrumb to CSS variablesMark Otto1-1/+9
2022-03-11Redesign the "Added in" badges in the docs (#35980)Mark Otto17-17/+19
Co-authored-by: XhmikosR <[email protected]>
2022-03-11Adjust border-radius values and add some new utilitiesMark Otto2-0/+3
- Updates global border-radius values for a more modern appearance - New .fw-semibold - New .rounded-4 and .rounded-5
2022-03-11docs: add missing `.dropup` in dropup centered example (#35948)Julien Déramond1-1/+1
2022-03-08Add migration guide mentionMark Otto1-0/+2
2022-03-08Convert popovers to CSS variablesMark Otto1-15/+45
2022-03-08Document new CSS vars in tooltip docsMark Otto1-6/+16
2022-03-08Convert tooltips to CSS varsMark Otto1-0/+23
2022-03-02Remove unneeded classes from toasts docs (#35931)Louis-Maxime Piton1-3/+3
2022-03-02Add static backdrop to offcanvas (#35832)Jann Westermann1-38/+59
* Add static backdrop option, to offcanvas * Trigger prevented event on esc with keyboard=false * Change offcanvas doc , moving backdrop examples to examples section
2022-03-01docs(example): fix RTL carousel exampleGaël Poupard2-1/+3
2022-02-28Add centered dropdown and dropup optionsMark Otto1-0/+34
2022-02-28Convert border utilities to CSS variablesMark Otto2-8/+50
- Updates the utilities mixin to check for specific CSS variable names via `css-variable` - Bonus fix: we now prevent local variables for `0` value utilities (e.g., `.border-top-0` no longer sets `--bs-border-opacity: 1` - Adds new `.border-opacity-*` classes - Adds new root variables: `--bs-border-color`, `--bs-border-style`, `--bs-border-width` - Documents the new variable changes
2022-02-28Update migration.mdMark Otto1-0/+1
2022-02-28Remove thicker border on table thead elementsMark Otto1-0/+36
Use the new .table-group-divider to create your own dividers as desired. Would love to find a better way to handle border-color for this, but for now, this is at least opt-in. I've applied it by default in another way for our docs tables to help differentiate our content vs our components. Fixes #35342
2022-02-25Prefer Linux-specific fonts over ArialErik Faye-Lund1-2/+4
Some Linux distributions (like Debian) have fontconfig aliases for Arial that picks specific fonts. But such generic aliases might be less desirable than the known-good Linux specific fonts. This fixes a problem on my setup where Liberation Sans is aliased as Arial, even when Noto Sans is available. Liberation Sans doesn't support a weight of 500, so we end up rendering headers at the normal weight of 400, which makes them stand out less. Reordering the Arial fallback makes us instead pick Noto Sans over Lieration Sans, which does support a weight of 500, and makes headers stand out again. While we're at it, fixup the reboot documentation to match, and change the comment about Helvetica Neue; that's not a "Basic web-fallback" font, it's the UI font on older iOS and macOS versions.
2022-02-25Remove border of disabled calendar buttons in Dropdowns exampleJulien Déramond1-0/+1
2022-02-25Add z-index for .toast-container (#35859)Mark Otto1-3/+3
* Add z-index for .toast-container - Adds positioning and z-index to toast container so that it has a system-declared layer in relation to other components. - Updates docs to use the class better Fixes $34028 * Remove unnecessary z-index from docs examples
2022-02-24Mention form height change in migration guideMark Otto1-0/+2
2022-02-23Docs: replace CSS by utilities in examples (#35699)Julien Déramond35-436/+240
* Drop .opacity-50 and .opacity-75 redefinition in examples * Drop unused .card-img-right from blog example CSS files * Use line-height utilities when possible * Use rounded-* utilities in examples * Replace .nav-underline by .nav-scroller and use it in examples.html default * Use .mb-1 for .blog-post-title * Remove unused CSS rule and use .fw-* utilities for carousels examples * Use utilities for cheatsheet examples * Extract some CSS to utilities for .nav-masthead .nav-link in cover example * Dashboard group of minor modifications * Dropdowns example: refactoring * Dropdowns example refactoring: fix linting by removing selector by id * Features example refactoring * Headers example refactoring * List groups example refactoring * Sidebars example refactoring * Sign-in example refactoring * Starter template refactoring * Fix RTL examples Co-authored-by: Mark Otto <[email protected]>
2022-02-23Replace non-existent `--bs-btn-padding` by `--bs-btn-padding-{x|y}`Julien Déramond1-1/+1
2022-02-22Fix modal docchefarbeiter1-4/+4
2022-02-22Rely on `border-width` for `<hr>` size (#35491)Gaël Poupard4-1/+24
* fix(reboot): revert hr styles to v4 implementation * docs(cheatsheet): add a hr example * fix(reboot): currentColor is the initial border-color value * Document hr element in Reboot docs * Update migration guide * Update scss/_variables.scss Co-authored-by: Mark Otto <[email protected]>
2022-02-22remove opacity utlitilies from example CSS (#35877)Christian Oliff1-3/+0
These are included in Bootstrap itself now Co-authored-by: XhmikosR <[email protected]>
2022-02-16Convert pagination component to CSS variables (#35399)Mark Otto1-2/+10
* Convert pagination component to CSS variables * Use RFS mixin * Remove the useless fallback
2022-02-14Convert dropdowns to CSS variablesMark Otto2-5/+17
2022-02-14Convert .btn and mixins to use CSS variablesMark Otto1-9/+38
2022-02-14Update reboot.mdvpakati1-1/+1
Add the missing right parenthesis.
2022-02-14Fix typo in Badges CSS variables descriptionJulien Déramond1-1/+1
2022-02-11Fixes #32082Mark Otto1-2/+0
Remove sentence in docs that's no longer needed. Fixes #32082.
2022-02-10Bump version calloutMark Otto1-1/+1
2022-02-10Convert .badge to CSS variablesMark Otto1-1/+9
2022-02-09Remove remaining `.navbar-light` classes (#35814)Julien Déramond5-10/+10
* Fix typo in CSS variables documentation * Drop remaining .navbar-light classes
2022-02-08Support floating labels on `.form-control-plaintext` (#32840)Sebastian Podjasek1-0/+15
* Support floating labels on `.form-control-plaintext` * Update floating-labels.md * Apply suggestions from code review Co-authored-by: XhmikosR <[email protected]> Co-authored-by: Mark Otto <[email protected]>
2022-02-08Add `.form-check-reverse` modifier class (#33606)Mark Otto1-0/+24
* Add .form-check-reverse modifier class * Update checks-radios.md Co-authored-by: XhmikosR <[email protected]>
2022-02-08Convert navbar to CSS variablesMark Otto3-36/+55
Co-Authored-By: Gaël Poupard <[email protected]>
2022-02-06Add zebra striping for table columnsMacinto5h1-3/+13
Co-Authored-By: Macallan Camara <[email protected]> Co-Authored-By: XhmikosR <[email protected]>
2022-02-06Fixed typo in docsSigurd Moland Wahl1-1/+1
2022-02-03Fix dropdown docs about autoclose and esc key.Florian Lacreuse1-1/+2