aboutsummaryrefslogtreecommitdiff
path: root/site/docs/4.1
AgeCommit message (Collapse)AuthorFilesLines
2018-12-22move to 4.2Mark Otto1-80/+0
2018-12-22Merge branch 'v4-dev' into stretched-linkXhmikosR205-20270/+0
2018-12-21Add a notes about multiple links/targets, remove multiple link exampleMark Otto1-22/+2
2018-12-21Prep for v4.2.0 releaseMark Otto205-20326/+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-16Revert "Remove now unnecessary shrink-to-fit viewport directive (#27818)" ↵XhmikosR1-2/+2
(#27855) This reverts commit af484dc12c2302c0e594a0e73a2ba06738a84410.
2018-12-16Update grid doc for consistent use of container. (#27776)Florian Lacreuse1-99/+122
2018-12-16distMark Otto2-5/+5
2018-12-15Update site/docs/4.1/utilities/stretched-link.mdMark Otto1-1/+1
Co-Authored-By: MartijnCuppens <[email protected]>
2018-12-15Update site/docs/4.1/utilities/stretched-link.mdMark Otto1-1/+1
Co-Authored-By: MartijnCuppens <[email protected]>
2018-12-15Update site/docs/4.1/utilities/stretched-link.mdMark Otto1-1/+1
Co-Authored-By: MartijnCuppens <[email protected]>
2018-12-15Copy changeMark Otto1-1/+1
Co-Authored-By: MartijnCuppens <[email protected]>
2018-12-15Copy changeMark Otto1-1/+1
Co-Authored-By: MartijnCuppens <[email protected]>
2018-12-15Remove now unnecessary shrink-to-fit viewport directive (#27818)Patrick H. Lauke1-2/+2
`shrink-to-fit=no` is not needed anymore - Apple removed the need for it from iOS9.3 onwards See https://www.scottohara.me/blog/2018/12/11/shrink-to-fit.html and https://github.com/h5bp/html5-boilerplate/issues/2102
2018-12-14Fix typo in "Hiding elements" section (#27843)ChrissBott1-1/+1
2018-12-13SVG accessibility fixes (#27826)Patrick H. Lauke13-72/+75
* 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-12-12Docs: add note about the grays being "cool" (#27824)Patrick H. Lauke1-1/+1
2018-12-12Add switch custom form control (#23004)Gijs Boddeus1-0/+16
2018-12-11Update Scrollspy doc to include missing method options (#27754)unaccomplished1-0/+12
2018-12-10Update bs-custom-file-input to v1.3.1.XhmikosR1-2/+2
2018-12-10Update clipboard.js to v2.0.4.XhmikosR1-2/+2
2018-12-10Update glyphicons URL.XhmikosR1-1/+1
2018-12-06Make disabled link in card examples non-focusable and add aria-disabled (#27788)Patrick H. Lauke1-2/+2
2018-12-05Allow Tooltips/Popovers to work in shadow DOMJohann-S2-0/+2
2018-12-05Merge branch 'v4-dev' into stretched-linkXhmikosR56-64/+77
2018-12-04Stretched linkMartijn Cuppens1-0/+100
2018-12-04spinners: use `.sr-only` instead of text-hide technique (#27736)Shohei Yoshida1-18/+44
2018-11-29Update contents.mdXhmikosR1-3/+5
2018-11-28Revert "Use `h5` for callouts so that they are not included in ToC."XhmikosR6-8/+8
This reverts commit 11da1601140174e4fa4e0e25e7f66fc21c08e927. This is no longer needed with jekyll-toc 0.9.1.
2018-11-28Remove unneeded ESLint config file.XhmikosR1-11/+0
We have /site/.eslintrc.json that covers this.
2018-11-27Use `h5` for callouts so that they are not included in ToC.XhmikosR6-8/+8
Callouts are already excluded from ToC, but due to a limitation in jekyll-toc they are still being included. We should revisit this if the bug is fixed later.
2018-11-27Inline bootstrap-stack.svg.XhmikosR1-1/+0
It's pretty small compressed; a little less than 1 KB with gzip.
2018-11-27Use an SVG for the stack image.XhmikosR3-0/+1
Image by @mdo.
2018-11-27Move examples images in assets/img/examples/ folder.XhmikosR41-3/+3
2018-11-27Use srcset for examples too.XhmikosR41-1/+3
2018-11-27homepage: use srcset.XhmikosR4-0/+0
This should reduce the amount of bytes for non-2x displays.
2018-11-26Update migration page to indicate the info can be used for 4.1.x as well as ↵Christian Oliff1-1/+1
4.0.x
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-25DistXhmikosR3-18/+6
2018-11-24prevent text selection for floating labels example (#27719)m5o1-0/+1
* prevent text selection for floating labels * expand the click target by no selecting the label text * use `pointer-events: none;` instead of `user-select` * thx @MartijnCuppens
2018-11-23Add opacity transitionMartijn Cuppens1-1/+1
2018-11-23Revert "Replace anchor.js with jekyll-anchor-headings."XhmikosR3-10/+15
This reverts commit b04f97f60be64549a37e0c71d676ab67e70891fa.
2018-11-22Update DocSearch.js to latest versionPixelastic1-6/+6
The latest (2.6.2) docsearch.js version now displays results as standard `<a href>` links, allowing users to `ctrl`-click on them to trigger default browser behavior of opening in a new tab. To maintain backward compatibility, this behavior has only been enabled to users that didn't define their own `handleSelected` method. This PR updates your `docsearch()` code to take advantage of the new `<a href>` template, by removing your custom `handleSelected` and moving its behavior to the `transformData` call. Namely, what you wanted to avoid was jumping to the first `<h1>` of the pages, which would prevent users from seeing the header. This PR checks if the suggestion targets the `#content` anchor (meaning it goes to this first `<h1>`) and remove it. Behavior should be the same, but at least now you can enjoy the `ctrl`-click :)
2018-11-21Sass precision documentation (#27705)Martijn Cuppens1-1/+1
2018-11-21reboot: Fix mailto address (#27700)XhmikosR1-1/+1
2018-11-21docs: fix path to assets. (#27696)XhmikosR1-4/+8
2018-11-20Use wrapping span instead of div (#27695)Martijn Cuppens2-7/+6
2018-11-20Remove holder.js.XhmikosR2-22/+1
2018-11-20Use the new include in examples too.XhmikosR6-31/+28
2018-11-20Tweak placeholder.svg.XhmikosR1-18/+18
* always include the title * make it possible to skip adding the title by passing `title=' '` * remove viewBox since we don't need it
2018-11-20Replace holder.js with SVGs.Martijn Cuppens11-78/+94