_mixins.less 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. // mixins
  2. // --------------------------
  3. // base rendering for an icon
  4. .fa-icon() {
  5. -moz-osx-font-smoothing: grayscale;
  6. -webkit-font-smoothing: antialiased;
  7. display: inline-block;
  8. font-style: normal;
  9. font-variant: normal;
  10. font-weight: normal;
  11. line-height: 1;
  12. }
  13. // sets relative font-sizing and alignment (in _sizing)
  14. .fa-size(@font-size) {
  15. font-size: (@font-size / @fa-size-scale-base) * 1em; // converts step in sizing scale into an em-based value that's relative to the scale's base
  16. line-height: (1 / @font-size) * 1em; // sets the line-height of the icon back to that of it's parent
  17. vertical-align: ((6 / @font-size) - (3 / 8)) * 1em; // vertically centers the icon taking into account the surrounding text's descender
  18. }
  19. // only display content to screen readers
  20. // see: https://www.a11yproject.com/posts/2013-01-11-how-to-hide-content/
  21. // see: https://hugogiraudel.com/2016/10/13/css-hide-and-seek/
  22. .fa-sr-only() {
  23. position: absolute;
  24. width: 1px;
  25. height: 1px;
  26. padding: 0;
  27. margin: -1px;
  28. overflow: hidden;
  29. clip: rect(0, 0, 0, 0);
  30. white-space: nowrap;
  31. border-width: 0;
  32. }
  33. // use in conjunction with .sr-only to only display content when it's focused
  34. .fa-sr-only-focusable() {
  35. &:not(:focus) {
  36. .fa-sr-only();
  37. }
  38. }
  39. // convenience mixins for declaring pseudo-elements by CSS variable,
  40. // including all style-specific font properties, and both the ::before
  41. // and ::after elements in the duotone case.
  42. .fa-icon-solid(@fa-var) {
  43. .fa-icon;
  44. .fa-solid;
  45. &::before {
  46. content: @fa-var;
  47. }
  48. }
  49. .fa-icon-regular(@fa-var) {
  50. .fa-icon;
  51. .fa-regular;
  52. &::before {
  53. content: @fa-var;
  54. }
  55. }
  56. .fa-icon-brands(@fa-var) {
  57. .fa-icon;
  58. .fa-brands;
  59. &::before {
  60. content: @fa-var;
  61. }
  62. }