2
0

_mixins.general.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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-left: 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-left: 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: 1.5em, $position: text-top) {
  69. width: $size;
  70. height: $size;
  71. vertical-align: $position;
  72. }
  73. @mixin icon () {
  74. @include font-smoothing;
  75. font-family: 'wagtail';
  76. font-style: normal;
  77. font-weight: normal;
  78. font-variant: normal;
  79. text-transform: none;
  80. speak: none;
  81. text-decoration: none;
  82. width: 1.3em;
  83. line-height: 1em;
  84. text-align: left;
  85. vertical-align: middle;
  86. margin-right: 0.2em;
  87. }
  88. @mixin svg-icon ($size: 1.5em, $position: text-top) {
  89. width: $size;
  90. height: $size;
  91. vertical-align: $position;
  92. }
  93. // Applies given rules on hover, except for touch screens.
  94. // Relies on feature detection to add a no-touch class on the html element.
  95. @mixin hover {
  96. .no-touch &:hover {
  97. @content;
  98. }
  99. }
  100. // Where included, show the focus outline within focusable items instead of around them.
  101. // This is useful when focusable items are tightly packed and there is no space in-between.
  102. @mixin show-focus-outline-inside {
  103. outline-offset: -1 * $focus-outline-width;
  104. }