3.1.2 (Brainy Betty)
635684d780c190d28f8a5d6cc3062537970b75a1
o:Sass::Tree::RootNode
:@has_childrenT:@children[
o:Sass::Tree::CommentNode;[ :@options{ :@lines[ :
@loud0:@value"G/* Override `$default-background-origin` to change the default. */:
@linei:@silenti o:Sass::Tree::ImportNode
;[ :@imported_filename"shared;	@	;i:@template0o:Sass::Tree::VariableNode:
@expro:Sass::Script::String	;	{ ;"content-box;i
:
@type:identifier;[ ;	@	:
@name"default-background-origin:@guarded"!default;i
o;;[ ;	@	;
[ ;0;"ï/* Position the background off the edge of the padding, border or content
 *
 * * Possible values:
 *   * `padding-box`
 *   * `border-box`
 *   * `content-box`
 * * browser defaults to `padding-box`
 * * mixin defaults to `content-box` */;i;i o:Sass::Tree::MixinDefNode;T;[o;;o:Sass::Script::Funcall
;	{ :@keywords{ :
@args[o:Sass::Script::Variable	;	@;"origin:@underscored_name"origin;i;"unquote;i;[ ;	@	;"origin;0;io;;[ ;	@	;
[ ;0;"S/* webkit and mozilla use the deprecated short [border | padding | content] */;i;i o;;o;	;	{ ;"origin;"origin;i;[ ;	@	;"deprecated;0;iu:Sass::Tree::IfNode\[o:Sass::Script::Operation
:@operand2o:Sass::Script::String	:@options{ :@value"padding-box:
@linei:
@type:identifier;@:@operand1o:Sass::Script::Variable	;@:
@name"origin:@underscored_name"origin;
i:@operator:eq;
i0[o:Sass::Tree::VariableNode:
@expro;	;{ ;	"padding;
i;;:@children[ ;{ ;"deprecated:@guarded0;
iu;Z[o:Sass::Script::Operation
:@operand2o:Sass::Script::String	:@options{ :@value"border-box:
@linei:
@type:identifier;@:@operand1o:Sass::Script::Variable	;@:
@name"origin:@underscored_name"origin;
i:@operator:eq;
i0[o:Sass::Tree::VariableNode:
@expro;	;{ ;	"border;
i;;:@children[ ;{ ;"deprecated:@guarded0;
iu;\[o:Sass::Script::Operation
:@operand2o:Sass::Script::String	:@options{ :@value"content-box:
@linei:
@type:identifier;@:@operand1o:Sass::Script::Variable	;@:
@name"origin:@underscored_name"origin;
i:@operator:eq;
i0[o:Sass::Tree::VariableNode:
@expro;	;{ ;	"content;
i;;:@children[ ;{ ;"deprecated:@guarded0;
io;;[ ;	@	;
[ ;0;"L/* Support for webkit and mozilla's use of the deprecated short form */;i;i o:Sass::Tree::MixinNode;[ ;	@	;{ ;[o;	;	{ ;"background-origin;i;;o;	;	@>;"deprecated;"deprecated;io;	;	@>;"	-moz;i ;;o;	;	@>;"-webkit;i!;;o:!Sass::Script::UnaryOperation	;	@>:@operando;	;	@>;"-o;i";;:@operator:not;i"o;!	;	@>;"o;	;	@>;"-ms;i#;;;#;$;i#o;!	;	@>;"o;	;	@>;"-khtml;i$;;;#;$;i$o;!	;	@>;"o;	;	@>;"official;i%;;;#;$;i%;"experimental;i&o; ;[ ;	@	;{ ;[o;	;	{ ;"background-origin;i';;o;	;	@Y;"origin;"origin;i'o;!	;	@Y;"o;	;	@Y;"	-moz;i(;;;#;$;i(o;!	;	@Y;"o;	;	@Y;"-webkit;i);;;#;$;i)o;	;	@Y;"-o;i*;;o;	;	@Y;"-ms;i+;;o;	;	@Y;"-khtml;i,;;o;	;	@Y;"official;i-;;;"experimental;i.;	@	;[[o;;	{ ;"origin;"origino;	;	@p;"default-background-origin;"default_background_origin;i;"background-origin;i;	@	;i;"8// Override `$default-background-origin` to change the default.

@import "shared";

$default-background-origin: content-box !default;

// Position the background off the edge of the padding, border or content
//
// * Possible values:
//   * `padding-box`
//   * `border-box`
//   * `content-box`
// * browser defaults to `padding-box`
// * mixin defaults to `content-box`


@mixin background-origin($origin: $default-background-origin) {
  $origin: unquote($origin);
  // webkit and mozilla use the deprecated short [border | padding | content]
  $deprecated: $origin;
  @if $origin == padding-box { $deprecated: padding; }
  @if $origin == border-box  { $deprecated: border;  }
  @if $origin == content-box { $deprecated: content; }

  // Support for webkit and mozilla's use of the deprecated short form
  @include experimental(background-origin, $deprecated,
    -moz,
    -webkit,
    not -o,
    not -ms,
    not -khtml,
    not official
  );
  @include experimental(background-origin, $origin,
    not -moz,
    not -webkit,
    -o,
    -ms,
    -khtml,
    official
  );
}
