Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-11-30Fix variable name in customizing comment (#35414)Christopher Boik
Correct table lightening variable to match the variable name defined and described in the loop variable section above
2021-11-26Update typography.mdFrançois Karman
remove a unnecessary <abbr> tag
2021-11-25Add a template factory helper to handle all template cases (#34519)GeoSot
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2021-11-23Make footer examples responsive to mobile screens (#35365)Neeraj Kumar Das
2021-11-23Add missing scss/maps imports (#35373)Julien Déramond
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2021-11-15Move reassigned Sass maps for colors to another stylesheet (#34942)Mark Otto
2021-11-15Fix typo in vertical alignment of table cells (#35348)Tobias Nießen
2021-11-09floating-labels: remove aria-label in the select example (#35327)Scott O'Hara
While it is understood that this is just an example, the visible text (label) of "Works with selects" and the `aria-label="Floating label select example"` created a [WCAG 2.5.3 Label in name](https://www.w3.org/WAI/WCAG21/quickref/#label-in-name) failure. As the `aria-label` isn't necessary here since this `select` is already provided an accessible name by its `label` element, removing the unnecessary `aria-label` seems the best course of action as: * removing it solves the WCAG issue * it removes the potential implication to developers that they'd even _need_ an `aria-label` here, let alone indirectly suggesting that it's ok for the visible text and accessible name to be out of alignment
2021-11-05Fix spacing utility classes mentioned in navbar supported content ↵Julien Déramond
documentation (#35328) Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2021-11-03Update import stacks required for modifying utilities (#35320)Mark Otto
2021-11-02Add top placement info to offcanvas docskyletsang
2021-11-01Add missing `role="search"` and `type="search"` in navbar doc and examples ↵Julien Déramond
(#35223) * Add missing `role="search"` and `type="search"` in navbar doc and examples * Update site/content/docs/5.1/components/navbar.md * Remove warning callout about ensuring correct search role in navbar doc Co-authored-by: Gaël Poupard <ffoodd@users.noreply.github.com> Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2021-11-01update grid example docs (#35308)Christian Oliff
2021-10-28images.md: remove zero-width space (#35234)Barabas
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2021-10-26fix(offcanvas): Adding titles class where missing (#35264)Oxydent
Co-authored-by: louismaximepiton <louismaxime.piton@orange.com>
2021-10-21Fix typo in RTL Hello World! sentence (#35236)Gaël Poupard
* docs(RTL): fix typo in Hello World! sentence * chore(docs): Cspell arabic words update
2021-10-11Update nuget docs to specify only .NET Framework projects are supported. ↵Jesse Mandel
(#35124) Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2021-10-05Enable `unicorn/prefer-prototype-methods` ruleXhmikosR
2021-10-05Separate container classes from `$enable-grid-classes` option (#35005)Mark Otto
* Separate container classes from enable-grid-classes optoin * Document the new option * Mention in migration guide Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2021-10-05Fix capitalization after period in `contents.md` (#35111)Julien Déramond
2021-09-28docs: remove `data-bs-dismiss="modal"` leftover (#35042)Alex Gibson
2021-09-28Add offcanvas to the components requiring JavaScript (#35013)Rohit Sharma
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2021-09-28examples: Add `role="switch"` to switches (#35022)Julien Déramond
2021-09-14Fix responsive img docscdalexndr
https://github.com/twbs/bootstrap/issues/34885
2021-09-10Changes some latin/dummy text to English (#34946)Christian Oliff
Changes some latin/dummy text to English so spellcheck linter passes
2021-09-09docs: Add role="switch" to switches (#34824)Christian Oliff
* docs: Add role="switch" to switches * Tweak/expand explanation about assistive technologies Co-authored-by: Patrick H. Lauke <redux@splintered.co.uk>
2021-09-09replace dummy text with English for Text truncation page (#34936)Christian Oliff
2021-09-09Non-blocking typo fix (#34935)Christian Oliff
2021-09-08Fix Backdroped typo (#34920)Christian Oliff
2021-09-08fix utilities typo (#34923)Christian Oliff
2021-09-08docs: Update RFS version & move "v" prefix to config.yml (#34918)XhmikosR
2021-09-08fix predefined typo (#34922)Christian Oliff
2021-09-08Fix JavaScript typo (#34921)Christian Oliff
2021-09-07Release v5.1.1 (#34869)v5.1.1XhmikosR
* Prepare v5.1.1. * Dist
2021-09-07Typo fixes (#34914)XhmikosR
2021-09-06Disabled link cleanup (#34886)Patrick H. Lauke
* Disabled link cleanup per https://www.w3.org/TR/html-aria/#docconformance > It is NOT RECOMMENDED to use `aria-disabled="true"` on an `a` element with an `href` attribute. > >NOTE >If a link needs to be "disabled", remove the `href` attribute. This PR removes the unnecessary `href="#"`, `tabindex="-1"`, and `aria-disabled="true"` from disabled links in both docs pages and examples. `aria-disabled="true"` *is* kept for disabled link-based buttons (that have `role="button"`) as there it's appropriate to use (you *want* to convey to assistive technologies that this thing you're claiming is a button is also disabled at the moment) Further, the PR extends the "Link functionality caveat" to show the "proper" way (removing `href` and adding `.disabled` class only) to disable a link, but then explains what to do if that's not possible (and then keeps an example with all the traditional `href="#" tabindex="-1" aria-disabled="true"`, but explains clearly that it's not ideal). Same sort of explanation is also added to the pointer event utilities page * Turn big note into actual normal doc text Co-authored-by: Mark Otto <markd.otto@gmail.com> Co-authored-by: Mark Otto <markd.otto@gmail.com> Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2021-09-06Docs: Add Callout to Stacks Helper page about limited flexbox gap support ↵Christian Oliff
(#34910) * Docs: Add Callout to Stacks Helper page about limited flexbox gap support Fixes: #34737 * Update stacks.md * Delete callout-warning-flexbox-gap.md Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2021-09-04Fix a11y issues in `.hstack` example and placeholder 'How it works' example ↵Julien Déramond
(#34892)
2021-09-03docs: add `$enable-smooth-scroll` to Sass options page (#34877)Alan Oliveira
2021-09-02Include root.scss in all dist builds (#34773)Mark Otto
* Remove the font-family-* override vars from Reboot build * Update Reboot docs to mention CSS variables
2021-08-31Use `path.Join` when joining pathsXhmikosR
2021-08-31Remove `.html` suffix from shortcodes calls.XhmikosR
It's the default.
2021-08-30Enhance Alerts > Live Example section (#34769)Julien Déramond
2021-08-30clarify importing all vs specific plugins (#34840)Marius A
2021-08-21Progress page: remove toggle animation button (#34787)XhmikosR
We don't use the same approach with a button on the Placeholders page.
2021-08-20docs: fix typos in approach and placeholders (#34781)SaintMalik
2021-08-18dashboard-rtl: use the same scripts as the dashboard example (#34766)XhmikosR
2021-08-18Fix typo in placeholder docs (#34752)Kyle Tsang
2021-08-10Fix modal when is triggered by `bs-toggle`, to hide other open instances ↵GeoSot
(#34701)
2021-08-05docs: Fix placeholders typo (#34686)Christian Oliff