Sha256: 992f2dac64bdf7e81c748b0ffc9167f633f086969607cba29a9221c02450e861
Contents?: true
Size: 851 Bytes
Versions: 44
Compression:
Stored size: 851 Bytes
Contents
@mixin clickable-element { // resets native button/link styles // and unifies outlines cursor: pointer; text-decoration: none; background: transparent; border: none; padding: 0; margin: 0; box-shadow: none; color: inherit; font-size: inherit; &:focus { outline-width: 1px; outline-style: dotted; outline-color: $color-highlight-normal; } &:active { outline: none; } &::-moz-focus-inner { border: 0; padding: 0; } } @mixin icon-small { display: inline; font-size: 10px; line-height: steps(2); } @mixin icon { display: inline; font-size: 14px; line-height: steps(2); } @mixin icon-large { display: inline; font-size: 18px; line-height: steps(2); }
Version data entries
44 entries across 44 versions & 1 rubygems