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-02-03Update docs for color and bg utilitiesMark Otto
- Split colors from background utilities with new docs page - Add Sass docs for both pages
2021-01-12Mention stretched-link constraints with table elements (#32761)Mark Otto
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2021-01-06fix(ratio): missing variable prefix (#32501)Gaël Poupard
This is the only unprefixed custom property, and its name is very common so I think we'd better prefix it too.
2020-12-15Expand `visually-hidden-focusable` so it can be used on a container, so the ↵Patrick H. Lauke
container becomes visible when focus is inside it / on one of its child elements.
2020-12-11Replace Lorem Ipsum placeholder text with more representative (or at least ↵Patrick H. Lauke
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-04docs(examples): new cheatsheet and RTL examplesGaël Poupard
2020-11-19Fix a few typos (#32204)XhmikosR
2020-11-02Add callouts about using light colors ideally on a dark background (#32040)Patrick H. Lauke
* Add callout about using light colors ideally on a dark background * Add callout to helpers > colored links as well
2020-10-19docs: switch to fenced codeblocks (#31806)XhmikosR
2020-10-13Revert "Improve callout shortcode. (#31802)" (#31871)XhmikosR
This reverts commit 5c6925385ee926a749ead6a4f2ebbfc64e701f36.
2020-10-12Improve callout shortcode. (#31802)XhmikosR
Remove the `markdownify` call, and instead rely on Hugo's proper syntax; `{{% callout %}}` when we want to the content to be processed as Markdown. This allows for stuff like: {{% callout info %}} ##### I'm an info callout! ```css .foo { color: #fff; } ``` {{< example >}} <div class="alert alert-warning alert-dismissible fade show" role="alert"> <strong>Holy guacamole!</strong> You should check in on some of those fields below. <button type="button" class="btn-close" data-dismiss="alert" aria-label="Close"></button> </div> {{< /example >}} {{% /callout %}}
2020-09-23Updates to .ratio selectors and docsMark Otto
- Remove group selector for ratio items - Drop the .ratio-item entirely - Update docs to explain updated approach - Update Migration guide to reflect the latest
2020-09-23Add example of responsive behavior for aspect ratiosMark Otto
2020-09-23Move styles to docs CSSMark Otto
2020-09-23Rename the classes and docs page, update everything accordinglyMark Otto
2020-09-23Updates responsive embeds with new class names and CSS variablesMark Otto
- Renames .embed-responsive-XbyY classes to .embed-responsive-XxY - Simplifies the Sass map to just be key and value, ratio and percentage - Builds .embed-responsive-* modifiers with CSS variables - Updates docs to show power of CSS variables - Add notes to the Migration guide
2020-07-31Cleanup/fix after the sr-only to visually-hidden renaming (#31359)Patrick H. Lauke
* sr-only -> visually-hidden cleanup It seems the old screen-readers.md file was left behind, and forgot to rename the mixin * Fix broken mixins for visually-hidden
2020-07-11Rename `sr-only` to `visually-hidden` in new/renamed helper doc filePatrick H. Lauke
2020-07-11Add alias/redirectPatrick H. Lauke
2020-07-11Docs: rename "Screen readers" helper page to "Visually hidden"Patrick H. Lauke
"screen readers" is quite reductive, as there are other assistive technologies. content hidden this way is even announced by things like Alexa/Siri etc, so it's not so much just "screen readers". in the long run, we may even consider changing the actual classnames (maybe `.visually-hidden` / `.visually-hidden-focusable`, though admittedly that's a bit verbose). also includes a tiny tweak to layout.md to generalise the note about using `.sr-only`
2020-07-03Rename `sr-only`/`sr-only-focusable` (#31139)Patrick H. Lauke
* Rename `sr-only`/`sr-only-focusable` To be more representative of the fact that these are not necessarily "screen reader" specific, but actually apply to assistive technologies in general (and also things like Alexa/Siri/etc). Goes hand-in-hand with #31133 Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2020-05-13Bump version to 5.0.0-alpha1 (#29925)XhmikosR
Also add v4.5.0 in versions and keep README.md pointing to v4.5.0 so that there are no broken stuff.