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