Sha256: 84dadfcea052910799306db6a4dba9a638eba104be297c68dbcae45d3b68c272

Contents?: true

Size: 1.4 KB

Versions: 14

Compression:

Stored size: 1.4 KB

Contents

=background($values...)
  $background-values: ()
  @each $value in $values
    $background-value: ()
    $background-color: ()
    $background-image: ()
    $background-gradient: ()
    $background-position: ()
    $background-repeat: ()
    $background-attachment: ()
    $background-size: ()
    $background-clip: ()
    @each $property in $value
      @if background_color($property)
        $background-color: $property
      @else if background_image($property)
        $background-image: $property
      @else if background_gradient($property)
        $background-gradient: $property
      @else if background_position($property)
        $background-position: $property
      @else if background_repeat($property)
        $background-repeat: $property
      @else if background_attachment($property)
        $background-attachment: $property
      @else if background_size($property)
        $background-size: background_size($property)
      @else if background_clip($property)
        $background-clip: background_clip($property)
      @if background-size != () and $background-position == ()
        $background-position: (left top)
      $background-value: $background-color $background-image $background-gradient $background-position $background-size $background-repeat $background-attachment $background-clip
    $background-values: append($background-values, $background-value, comma)
  background: $background-values

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
oulu-0.12.0 app/assets/stylesheets/settings/mixins/_background.sass
oulu-0.11.10 app/assets/stylesheets/settings/mixins/_background.sass
oulu-0.11.9 app/assets/stylesheets/settings/mixins/_background.sass
oulu-0.11.8 app/assets/stylesheets/settings/mixins/_background.sass
oulu-0.11.7 app/assets/stylesheets/settings/mixins/_background.sass
oulu-0.11.6 app/assets/stylesheets/settings/mixins/_background.sass
oulu-0.11.5 app/assets/stylesheets/settings/mixins/_background.sass
oulu-0.11.4 app/assets/stylesheets/settings/mixins/_background.sass
oulu-0.11.3 app/assets/stylesheets/settings/mixins/_background.sass
oulu-0.11.2 app/assets/stylesheets/settings/mixins/_background.sass
oulu-0.11.1 app/assets/stylesheets/settings/mixins/_background.sass
oulu-0.11.0 app/assets/stylesheets/settings/mixins/_background.sass
oulu-0.10.1 app/assets/stylesheets/settings/mixins/_background.sass
oulu-1.0.0.beta1 app/assets/stylesheets/settings/mixins/_background.sass