aboutsummaryrefslogtreecommitdiff
path: root/site
AgeCommit message (Collapse)AuthorFilesLines
2021-01-08Move migration sidebar entry to sidebar.ymlXhmikosR2-26/+30
2021-01-07Bump copyright year to 2021 (#32713)XhmikosR2-4/+4
2021-01-07Clarify the `$enable-shadows` option in our docs (#32685)Mark Otto1-1/+1
Co-authored-by: XhmikosR <[email protected]>
2021-01-07Fix navbar docs - active nav-link (#32589)Florian Lacreuse1-2/+2
* Fix navbar docs - active nav-link * Update navbar.md Co-authored-by: XhmikosR <[email protected]>
2021-01-06fix(ratio): missing variable prefix (#32501)Gaël Poupard3-4/+5
This is the only unprefixed custom property, and its name is very common so I think we'd better prefix it too.
2021-01-06Tweak wording for no-touch carousel (#32688)Patrick H. Lauke1-2/+2
based on changes made in the backport https://github.com/twbs/bootstrap/pull/32639
2021-01-05Hyphen to dash for ranges (#32488)Jonathan5-5/+5
* Hyphen to dash for ranges * Hyphen to dash for ranges * Hyphen to dash for ranges * Hyphen to dash for ranges * Hyphen to dash for ranges
2021-01-05carousel example: Move "active" class on .nav-link element (#32647) (#32647)Théophile Helleboid - chtitux2-4/+4
The "active" CSS class must be on "nav-link" element, see `_navbar.scss`: ```css .nav-link.active { color: $navbar-dark-active-color; } ``` Co-authored-by: XhmikosR <[email protected]>
2021-01-05Fixes #32557: Add functions and variables to the utilities API docs imports ↵Mark Otto1-1/+7
(#32684) Co-authored-by: XhmikosR <[email protected]>
2021-01-05Remove incorrect mention of dropdowns for dynamic tab behavior (#32634)Patrick H. Lauke1-1/+1
While technically it still works, we're already saying authors shouldn't do it later on, and we removed any examples of this. This was a straggler. Co-authored-by: XhmikosR <[email protected]>
2021-01-05Tweak the wording for collapse to indicate button is preferred/more semantic ↵Patrick H. Lauke1-1/+1
(#32632) Co-authored-by: XhmikosR <[email protected]>
2020-12-29Add an actual `data-bs-touch="false"` example in the carousel docs (#32638)Patrick H. Lauke1-6/+34
* Add an actual `data-touch="false"` example in the carousel docs this can also make it easier to actually check/debug any issues we may have with this data attribute * Correct attribute table explanation and remove slide class from example
2020-12-29Bump eslint-plugin-unicorn from 24.0.0 to 25.0.0 (#32644)dependabot[bot]1-2/+2
* Bump eslint-plugin-unicorn from 24.0.0 to 25.0.0 Bumps [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn) from 24.0.0 to 25.0.0. - [Release notes](https://github.com/sindresorhus/eslint-plugin-unicorn/releases) - [Commits](https://github.com/sindresorhus/eslint-plugin-unicorn/compare/v24.0.0...v25.0.0) Signed-off-by: dependabot[bot] <[email protected]> * Fix renamed eslint-plugin-unicorn options Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <[email protected]>
2020-12-21docs(sidebar): invalid CSS value (#32575)XhmikosR1-1/+1
Co-authored-by: Gaël Poupard <[email protected]>
2020-12-21Support Popper virtual elements (#32376)Nils K1-2/+2
Adds the ability to use objects implementing the virtual element interface as the value for the reference option of a dropdown config. Co-authored-by: XhmikosR <[email protected]>
2020-12-21API docs: add missing comma (#32543)XhmikosR1-1/+1
2020-12-20Add keyboard-focusable elements for popover on disabled button (#32490)Florian Lacreuse1-3/+3
2020-12-20Tooltips: add missing space (#32529)XhmikosR1-1/+1
2020-12-19added class selector "." to "dropend" (#32534)joe1-1/+1
It was missing the `.` before `dropend`.
2020-12-18docs: Fix popover example showing above navbar (#32445)Siju Samson2-1/+4
Co-authored-by: XhmikosR <[email protected]>
2020-12-18Add helpers to utilities bundle (#32324)Marc Jansing1-0/+3
Adds currently missing utilities classes which are located in scss/helpers to boostrap-utilities dist files. Co-authored-by: XhmikosR <[email protected]>
2020-12-17Extended form validation states customization capabilities (#31757)Dmytro Yaremenko2-1/+4
Co-authored-by: XhmikosR <[email protected]>
2020-12-15Fix popover docs example (#32489)Florian Lacreuse1-22/+2
2020-12-15Docs: style clipboard button on `:focus`, not just `:hover` (#32461)Patrick H. Lauke1-1/+2
Co-authored-by: XhmikosR <[email protected]>
2020-12-15docs(skip links): new powers for .visually-hidden-focusableGaël Poupard2-16/+3
2020-12-15Expand `visually-hidden-focusable` so it can be used on a container, so the ↵Patrick H. Lauke2-2/+8
container becomes visible when focus is inside it / on one of its child elements.
2020-12-15docs: Remove unneeded `.form-group` class (#32483)Kyle Tsang1-1/+1
2020-12-15Remove redundant `pointer-events: none` override for tooltip and popover ↵Florian Lacreuse2-4/+4
disabled buttons (#32478) Co-authored-by: Patrick H. Lauke <[email protected]> Co-authored-by: XhmikosR <[email protected]>
2020-12-15docs: Add system-ui to native font stack documentation (#32455)Alan Orth2-0/+4
system-ui was added to the native font stack in #30561 but the docs were not updated.
2020-12-14Tooltip/popover - change the default value for `fallbackPlacements` (#32437)Rohit Sharma3-6/+12
The default Popper `fallbackPlacements` value is `[oppositePlacement]`. - The default value was previously (in v4) `'flip'` that can be achieved by passing the single value in the array, like — `[oppositePlacement]`. Keeping `null` also sets the `fallbackPlacements` to `[oppositePlacement]` (Default value in Popper) - It's better to have **clockwise** (`['top', 'right', 'bottom', 'left']`) fallback options so that tooltip/popover can be placed to another side even if the opposite placement doesn't fit. Co-authored-by: XhmikosR <[email protected]>
2020-12-14Clean up lorem ipsum text in popover examples (#32479)Florian Lacreuse1-8/+8
2020-12-14Add missing `has-validation` in checkout examples (#32464)Florian Lacreuse2-2/+2
2020-12-14docs(cheatsheet): fix RTL sidenav arrowsGaël Poupard2-0/+5
2020-12-14examples: Update font utility classes to new v5 versions (#32449)Alan Orth3-12/+12
* site: Fix .font-italic to .fst-italic in blog example The font utility class was renamed from .font-italic to .fst-italic but a few references didn't get updated. * site: Fix .font-weight-* to .fw-* in RTL examples These font utility classes were renamed from .font-weight-* to .fw-* but a few references didn't get updated. Co-authored-by: XhmikosR <[email protected]>
2020-12-14Straggler lorem ipsum text (#32463)Patrick H. Lauke1-3/+3
2020-12-11Replace Lorem Ipsum placeholder text with more representative (or at least ↵Patrick H. Lauke20-421/+356
english language) text (#32246) Replaces shorter examples with more sensible/representative/inforrmative text. For longer passages, resorted to using SFW extracts from http://katyperryipsum.com/
2020-12-11Use box shadows instead of linear gradients to colorize tables (#32348)Martijn Cuppens1-1/+1
Co-authored-by: XhmikosR <[email protected]>
2020-12-10docs: SVG consistency changes (#32259)XhmikosR11-19/+11
* Move inlined SVG to a partial. Also, add `fill="currentColor"` in the SVGs. * docs: reorder attributes
2020-12-10docs: Add Korean translation (#32284)AlexKoala1-0/+5
Co-authored-by: XhmikosR <[email protected]>
2020-12-10Typo: show on xxl, if only xl should be hidden. (#32287)Thomas Güttler1-1/+1
Co-authored-by: XhmikosR <[email protected]>
2020-12-09Remove duplicated 'follow Bootstrap on Twitter' link in Community section ↵Christian Oliff1-1/+0
(#32399) Co-authored-by: XhmikosR <[email protected]>
2020-12-09cheatsheet: Drop redundant `(current)` text (#32401)Gaël Poupard2-4/+4
Useless since we're using `aria-current` (see #31891).
2020-12-09Remove offset in Popover docskyletsang2-8/+2
Fix fallbackPlacements in Popover and Tooltip docs
2020-12-09docs: Update Popper 2 doc linkskyletsang3-6/+6
2020-12-09Fix missed occurrencies of "Popper.js" (#32398)Gaël Poupard1-2/+2
2020-12-08carousel.md: fix `$carousel-transition-duration` reference (#32316)Radu Chiriac1-1/+1
Co-authored-by: XhmikosR <[email protected]>
2020-12-07Add a callout for the sanitizer in popovers and tooltips (#32272)Patrick H. Lauke3-2/+11
* Add a callout for the sanitizer in popovers and tooltips * Add second reference to sanitizer in the options Co-authored-by: XhmikosR <[email protected]>
2020-12-07Revert v5.getbootstrap.com changesXhmikosR4-4/+6
2020-12-07Prepare v5.0.0-beta1.XhmikosR1-1/+1
2020-12-06Change button copy to make the example clearerMartijn Cuppens1-1/+1