Sha256: 9a3088ddd4463f915f1c0e4241d76f15c1960538e10022950d7318f19e798d4b
Contents?: true
Size: 616 Bytes
Versions: 136
Compression:
Stored size: 616 Bytes
Contents
@mixin text-decoration($value) { // <text-decoration-line> || <text-decoration-style> || <text-decoration-color> @include prefixer(text-decoration, $value, moz); } @mixin text-decoration-line($line: none) { // none || underline || overline || line-through @include prefixer(text-decoration-line, $line, moz); } @mixin text-decoration-style($style: solid) { // solid || double || dotted || dashed || wavy @include prefixer(text-decoration-style, $style, moz webkit); } @mixin text-decoration-color($color: currentColor) { // currentColor || <color> @include prefixer(text-decoration-color, $color, moz); }
Version data entries
136 entries across 129 versions & 22 rubygems