_mixins.general.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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 svg-icon($size: 1em, $position: text-top) {
  51. width: $size;
  52. height: $size;
  53. vertical-align: $position;
  54. }
  55. // Applies given rules on hover, for devices that support hover.
  56. @mixin hover {
  57. @media (hover: hover) {
  58. a:hover {
  59. @content;
  60. }
  61. }
  62. }
  63. // Where included, show the focus outline within focusable items instead of around them.
  64. // This is useful when focusable items are tightly packed and there is no space in-between.
  65. @mixin show-focus-outline-inside {
  66. outline-offset: -1 * $focus-outline-width;
  67. }
  68. /**
  69. * Apply styles for the dark theme only.
  70. */
  71. @mixin dark-theme() {
  72. .w-theme-dark & {
  73. @content;
  74. }
  75. @media (prefers-color-scheme: dark) {
  76. .w-theme-system & {
  77. @content;
  78. }
  79. }
  80. }
  81. /**
  82. * Apply styles for the light theme only.
  83. */
  84. @mixin light-theme() {
  85. .w-theme-light & {
  86. @content;
  87. }
  88. @media (prefers-color-scheme: light) {
  89. .w-theme-system & {
  90. @content;
  91. }
  92. }
  93. }