Sha256: 5b0173c954d69bdbcddfd98d6bd77f49a9804747c6255ce0e1b62836019104d0

Contents?: true

Size: 1.1 KB

Versions: 2

Compression:

Stored size: 1.1 KB

Contents

@import "shared";

// The default value is `padding-box` -- the box model used by modern browsers.
//
// If you wish to do so, you can override the default constant with `border-box`
//
// To override to the default border-box model, use this code:
//     $default-background-clip: border-box

$default-background-clip: padding-box !default;

// Clip the background (image and color) at the edge of the padding or border.
//
// Legal Values:
//
//   * padding-box
//   * border-box
//   * text

@mixin background-clip($clip: $default-background-clip) {
  // webkit and mozilla use the deprecated short [border | padding]
  $clip: unquote($clip);
  $deprecated: $clip;
  @if $clip == padding-box { $deprecated: padding; }
  @if $clip == border-box { $deprecated: border; }
  // Support for webkit and mozilla's use of the deprecated short form
  @include experimental(background-clip, $deprecated,
    -moz,
    -webkit,
    not(-o),
    not(-ms),
    not(-khtml),
    not official
  );
  @include experimental(background-clip, $clip,
    not(-moz),
    not(-webkit),
    not(-o),
    not(-ms),
    -khtml,
    official
  );
}

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
comixins-0.1.2 vendor/assets/stylesheets/compass/css3/_background-clip.scss
ghost-manager-1.0.0 magneto/source/assets/bower_components/compass-mixins/lib/compass/css3/_background-clip.scss