2
0

_mixins.general.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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 visuallyvisible {
  61. clip: auto;
  62. height: auto;
  63. width: auto;
  64. margin: initial;
  65. overflow: visible;
  66. position: initial;
  67. }
  68. @mixin svg-icon($size: 1em, $position: text-top) {
  69. width: $size;
  70. height: $size;
  71. vertical-align: $position;
  72. }
  73. // Applies given rules on hover, for devices that support hover.
  74. @mixin hover {
  75. @media (hover: hover) {
  76. a:hover {
  77. @content;
  78. }
  79. }
  80. }
  81. // Where included, show the focus outline within focusable items instead of around them.
  82. // This is useful when focusable items are tightly packed and there is no space in-between.
  83. @mixin show-focus-outline-inside {
  84. outline-offset: -1 * $focus-outline-width;
  85. }
  86. /**
  87. * Apply styles for the dark theme only.
  88. */
  89. @mixin dark-theme() {
  90. .w-theme-dark & {
  91. @content;
  92. }
  93. @media (prefers-color-scheme: dark) {
  94. .w-theme-system & {
  95. @content;
  96. }
  97. }
  98. }
  99. /**
  100. * Apply styles for the light theme only.
  101. */
  102. @mixin light-theme() {
  103. .w-theme-light & {
  104. @content;
  105. }
  106. @media (prefers-color-scheme: light) {
  107. .w-theme-system & {
  108. @content;
  109. }
  110. }
  111. }