aboutsummaryrefslogtreecommitdiff
path: root/site/_includes/icons
AgeCommit message (Collapse)AuthorFilesLines
2019-03-13Switch to Hugo.XhmikosR11-45/+0
No more Ruby dependency and most important more than 10 times less build time (at least on Windows)!
2019-02-20Remove `focusable="false"` from SVGs.XhmikosR11-11/+11
2019-02-09placeholder.svg: Partially revert the changes from c0e42cb. (#28216)XhmikosR1-1/+1
It broke the example include.
2019-02-07Optimize and normalize SVGs. (#28200)XhmikosR11-13/+13
Mostly be consistent with the attributes' order and improve compression when possible.
2018-12-23Add Open Collective to header (#27916)Martijn Cuppens1-0/+1
2018-12-22bootstrap-stack.svg: remove unneeded space.XhmikosR1-1/+1
2018-12-13SVG accessibility fixes (#27826)Patrick H. Lauke10-11/+11
* 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-27Inline bootstrap-stack.svg.XhmikosR1-0/+1
It's pretty small compressed; a little less than 1 KB with gzip.
2018-11-21Placeholders: use our gray colors (#27701)m5o1-4/+4
Previously we were using the old holder.js colors.
2018-11-20Tweak placeholder.svg.XhmikosR1-29/+28
* 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 Cuppens1-0/+36
2018-07-11Reorganize docs for easier deploysMark Otto8-0/+8
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.