summaryrefslogtreecommitdiff
path: root/_sass/bourbon/css3/_text-decoration.scss
blob: 9222746ce152a92f9f559e900cbc965024f97def (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@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);
}