summaryrefslogtreecommitdiffstats
path: root/debian/missing-sources/bourbon/app/assets/stylesheets/functions/_assign-inputs.scss
blob: 1ad842036a00a3795392bd60dbbabb7c6df4e351 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@function assign-inputs($inputs, $pseudo: null) {
  @if $output-bourbon-deprecation-warnings == true {
    @warn "[Bourbon] [Deprecation] `assign-inputs` is deprecated and will be " +
    "removed in 5.0.0.";
  }

  $list: ();

  @each $input in $inputs {
    $input: unquote($input);
    $input: if($pseudo, $input + ":" + $pseudo, $input);
    $list: append($list, $input, comma);
  }

  @return $list;
}