aboutsummaryrefslogtreecommitdiff
path: root/site/docs/4.1/content
AgeCommit message (Collapse)AuthorFilesLines
2018-12-21Prep for v4.2.0 releaseMark Otto6-1687/+0
- Move 4.1 docs to 4.2 - Update versions everywhere to 4.1.3 with release script - Manually bump the shorthand version in package.json - Add 4.2 to the versions docs page - Update some redirects - Fix tests asset URLs - Bump Nuget and more
2018-12-13SVG accessibility fixes (#27826)Patrick H. Lauke2-7/+7
* SVG accessibility fixes - add `focusable="false"` to all SVGs, to stop IE from including the `<svg>` in its default focus cycle - completely hide decorative SVGs using `aria-hidden="true"` - add `role="img"` to meaningful/"content" SVGs, ensure they have an appropriate `<title>` and/or `aria-label` - simplify placeholder default title * Simplify usage of placeholder.svg in the docs - in most cases, no need for separate/redundant text and title (now that we make text itself part of the alternative text explicitly) - no need (expect in rare cirumstances) to describe the placeholder image (unless the look of the image is important/the actual content, as is the case with the image thumbnail class) * Simplify example.html rewriting of <svg> to <img> code sample - as the `alt` for the placeholder isn't really important, just add an ellipsis instead (otherwise, to be correct, we'd have to construct the whole "title+text" construct like we do now in the placeholder.svg itself * Change svgo configuration to retain role attribute and add/force focusable=false - regarding `focusable=false`, see https://github.com/svg/svgo/issues/1011 (which would be the "proper" SVGO fix) and the (hacky) solution https://github.com/svg/svgo/pull/817
2018-11-26Change OS X to macOS in Sass comments (#27729)Christian Oliff1-2/+2
It's been macOS for 3 years now and we use just 'macOS' elsewhere in the Bootstrap documentation. https://en.wikipedia.org/wiki/MacOS
2018-11-21reboot: Fix mailto address (#27700)XhmikosR1-1/+1
2018-11-20Replace holder.js with SVGs.Martijn Cuppens2-8/+8
2018-10-22Use the example shortcode in more places.XhmikosR1-9/+3
Now that we don't have the ToC issue with the examples' headers in ToC, we can safely do this.no_toc_section_class
2018-09-14Use https in more places and fix a few redirects.XhmikosR1-1/+1
2018-07-20Improve responsive table docsMark Otto1-5/+4
- Splits the examples with code snippets - Adds note about possible broken visuals Closes #25813
2018-07-15Merge branch 'v4-dev' of https://github.com/Varunram/bootstrap into ↵Mark Otto1-0/+12
Varunram-v4-dev
2018-07-11Reorganize docs for easier deploysMark Otto6-0/+1682
With the current docs directory setup, I'm making too many mistakes and have to manually address path changes and directory moves on deploy. This makes for a frustrating experience developing locally and shipping releases. With this PR, we're basically back to the same setup from v3—duplicating the dist directory into our docs directory. Not the most ideal, but very straightforward for me as the release manager.