summaryrefslogtreecommitdiff
path: root/_sass/bourbon/helpers/_gradient-positions-parser.scss
blob: 07d30b6cf956e8eacd45532a92a0e897ca47a188 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
@function _gradient-positions-parser($gradient-type, $gradient-positions) {
  @if $gradient-positions
  and ($gradient-type == linear)
  and (type-of($gradient-positions) != color) {
    $gradient-positions: _linear-positions-parser($gradient-positions);
  }
  @else if $gradient-positions
  and ($gradient-type == radial)
  and (type-of($gradient-positions) != color) {
    $gradient-positions: _radial-positions-parser($gradient-positions);
  }
  @return $gradient-positions;
}