3.1.2 (Brainy Betty) 67d2c44198039f31460fc69d02b45fbe463379dc o:Sass::Tree::RootNode : @linei:@has_childrenT:@children[ o:Sass::Tree::ImportNode ;i:@imported_filename" shared;[: @options{:@template0o:Sass::Tree::CommentNode ;i: @value"/* 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 */: @silenti;[; @ : @loud0: @lines[o:Sass::Tree::VariableNode ;i: @guarded" !default;[: @name"default-background-clip; @ : @expro:Sass::Script::String ;i;"padding-box: @type:identifier; {o; ;i;"™/* Clip the background (image and color) at the edge of the padding or border. * * Legal Values: * * * padding-box * * border-box * * text */;i;[; @ ;0;[o:Sass::Tree::MixinDefNode ;i;T: @args[[o:Sass::Script::Variable;" clip; {:@underscored_name" clipo; ;i;"default-background-clip; @;"default_background_clip;[ o; ;i;"I/* webkit and mozilla use the deprecated short [border | padding] */;i;[; @ ;0;[o; ;i;0;[;" clip; @ ;o:Sass::Script::Funcall ;i:@keywords{;[o; ;i;" clip; {;" clip;" unquote; @1o; ;i;0;[;"deprecated; @ ;o; ;i;" clip; {;" clipu:Sass::Tree::IfNodeX[o:Sass::Script::Operation : @linei:@operand2o:Sass::Script::String ;i: @value"padding-box: @type:identifier: @options{:@operand1o:Sass::Script::Variable ;i: @name" clip; @ :@underscored_name" clip; @ :@operator:eq0[o:Sass::Tree::VariableNode ;i: @guarded0:@children[;"deprecated; {: @expro; ;i; " padding; ; ; {u;V[o:Sass::Script::Operation : @linei:@operand2o:Sass::Script::String ;i: @value"border-box: @type:identifier: @options{:@operand1o:Sass::Script::Variable ;i: @name" clip; @ :@underscored_name" clip; @ :@operator:eq0[o:Sass::Tree::VariableNode ;i: @guarded0:@children[;"deprecated; {: @expro; ;i; " border; ; ; {o; ;i;"L/* Support for webkit and mozilla's use of the deprecated short form */;i;[; @ ;0;[o:Sass::Tree::MixinNode ;i';{;[ o; ;i ;"background-clip;;; {o; ;i ;"deprecated; @F;"deprecatedo; ;i!;" -moz;;; @Fo; ;i";" -webkit;;; @Fo:!Sass::Script::UnaryOperation ;i#: @operando; ;i#;"-o;;; @F; @F:@operator:noto;! ;i$;"o; ;i$;"-ms;;; @F; @F;#;$o;! ;i%;"o; ;i%;" -khtml;;; @F; @F;#;$o;! ;i&;"o; ;i&;" official;;; @F; @F;#;$;[;"experimental; @ o; ;i/;{;[ o; ;i(;"background-clip;;; {o; ;i(;" clip; @a;" clipo;! ;i);"o; ;i);" -moz;;; @a; @a;#;$o;! ;i*;"o; ;i*;" -webkit;;; @a; @a;#;$o; ;i+;"-o;;; @ao; ;i,;"-ms;;; @ao; ;i-;" -khtml;;; @ao; ;i.;" official;;; @a;[;"experimental; @ ;"background-clip; @ ; @ ; "W@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, -o, -ms, -khtml, official ); }