_mixins.general.scss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. // =============================================================================
  2. // Mixins
  3. // =============================================================================
  4. // Please note that the mixins partial shouldn't include any classes. This is so
  5. // it can be included in any file without accidentally producing output
  6. // Turns on font-smoothing when used. Use sparingly.
  7. @mixin font-smoothing {
  8. -webkit-font-smoothing: antialiased;
  9. -moz-osx-font-smoothing: grayscale;
  10. }
  11. @mixin clearfix() {
  12. &:before,
  13. &:after {
  14. content: ' ';
  15. display: table;
  16. }
  17. &:after {
  18. clear: both;
  19. }
  20. }
  21. @mixin unlist() {
  22. margin-top: 0;
  23. margin-bottom: 0;
  24. padding-inline-start: 0;
  25. list-style-type: none;
  26. font-style: normal;
  27. li {
  28. list-style-type: none;
  29. font-style: normal;
  30. }
  31. }
  32. // remove list styles, but only for the immediate element -
  33. // allow nested lists inside it to keep the default style
  34. @mixin unlistimmediate() {
  35. margin-top: 0;
  36. margin-bottom: 0;
  37. padding-inline-start: 0;
  38. list-style-type: none;
  39. font-style: normal;
  40. > li {
  41. list-style-type: none;
  42. font-style: normal;
  43. }
  44. }
  45. @mixin transition($transition...) {
  46. body.ready & {
  47. transition: $transition;
  48. }
  49. }
  50. @mixin visuallyhidden {
  51. border: 0;
  52. clip: rect(0 0 0 0);
  53. height: 1px;
  54. margin: -1px;
  55. overflow: hidden;
  56. padding: 0;
  57. position: absolute;
  58. width: 1px;
  59. }
  60. @mixin svg-icon($size: 1em, $position: text-top) {
  61. width: $size;
  62. height: $size;
  63. vertical-align: $position;
  64. }
  65. // Applies given rules on hover, for devices that support hover.
  66. @mixin hover {
  67. @media (hover: hover) {
  68. a:hover {
  69. @content;
  70. }
  71. }
  72. }
  73. // Where included, show the focus outline within focusable items instead of around them.
  74. // This is useful when focusable items are tightly packed and there is no space in-between.
  75. @mixin show-focus-outline-inside {
  76. outline-offset: -1 * $focus-outline-width;
  77. }
  78. /**
  79. * Apply styles for the dark theme only.
  80. */
  81. @mixin dark-theme() {
  82. .w-theme-dark & {
  83. @content;
  84. }
  85. @media (prefers-color-scheme: dark) {
  86. .w-theme-system & {
  87. @content;
  88. }
  89. }
  90. }
  91. /**
  92. * Apply styles for the light theme only.
  93. */
  94. @mixin light-theme() {
  95. .w-theme-light & {
  96. @content;
  97. }
  98. @media (prefers-color-scheme: light) {
  99. .w-theme-system & {
  100. @content;
  101. }
  102. }
  103. }