3.1.10 (Brainy Betty) 4bee05fae5a938fad9aa2398c08ee6e8c3ae8f68 o:Sass::Tree::RootNode :@has_childrenT: @options{: @linei:@children[ o:Sass::Tree::CommentNode ;@;i; [: @value["/* makes a list inline. */: @loud0: @silentio:Sass::Tree::MixinDefNode ;T;@;i; [o:Sass::Tree::PropNode ;@;i ; [; o:Sass::Script::String;@; " none: @type:identifier: @tabsi: @name["list-style-type:@prop_syntax:newo:Sass::Tree::RuleNode ;T:@parsed_ruleso:"Sass::Selector::CommaSequence;i :@filename": @members[o:Sass::Selector::Sequence;[o:#Sass::Selector::SimpleSequence;i ;@;[o:Sass::Selector::Parent;i ;@o;;[o;;i ;@;[o;;i ;@o;;i ;@;[o:Sass::Selector::Element :@namespace0;i ;["li;@;@;i ; [o; ;@;i ; [; o;;@; "0px;;;i;[" margin;;o; ;@;i ; [; o;;@; "0px;;;i;[" padding;;o; ;@;i ; [; o;;@; " inline;;;i;[" display;;;i: @rule[" &, & li;"inline-list: @args[o; ;@;i; [; ["…/* makes an inline list delimited with the passed string. * Defaults to making a comma-separated list. * * Please make note of the browser support issues before using this mixin: * * use of `content` and `:after` is not fully supported in all browsers. * See quirksmode for the [support matrix](http://www.quirksmode.org/css/contents.html#t15) * * `:last-child` is not fully supported. * see quirksmode for the [support matrix](http://www.quirksmode.org/css/contents.html#t29). * * IE8 ignores rules that are included on the same line as :last-child * see http://www.richardscarrott.co.uk/posts/view/ie8-last-child-bug for details */; 0; io; ;T;@;i; [o:Sass::Tree::MixinNode ;@;i ; [;"inline-list;"[:@keywords{o; ;T;o;;i!;";[o;;[o;;i!;@K;[o; ; 0;i!;["li;@K;@;i!; [o; ;T;o;;i";";[o;;[o;;i";@W;[o;;i";@Wo:Sass::Selector::Pseudo ;i": @arg0;[" after;: class;@W;@;i"; [o; ;@;i"; [; o:Sass::Script::Variable ;@;i":@underscored_name"separator;"separator;i;[" content;;;i;![" &:aftero; ;T;o;;i#;";[o;;[o;;i#;@m;[o;;i#;@mo;% ;i#;&0;["last-child;;';@m;@;i#; [o; ;T;o;;i$;";[o;;[o;;i$;@z;[o;;i$;@zo;% ;i$;&0;[" after;;';@z;@;i$; [o; ;@;i$; [; o;;@; """;;;i;[" content;;;i;![" &:after;i;!["&:last-childo; ;T;o;;i&;";[o;;[o;;i&;@Œ;[o;;i&;@Œo:Sass::Selector::Class;i&;[" last;@Œ;@;i&; [o; ;T;o;;i';";[o;;[o;;i';@™;[o;;i';@™o;% ;i';&0;[" after;;';@™;@;i'; [o; ;@;i'; [; o;;@; """;;;i;[" content;;;i;![" &:after;i;![" &.last;i;!["li;"delimited-list;"[[o;(;@;)"separator;"separatoro; ;@;i; ", ;: stringo; ;@;i,; [; ["E/* See [delimited-list](#mixin-delimited-list) * @deprecated */; 0; io; ;T;@;i.; [o:Sass::Tree::WarnNode ;@;i/; [: @expro; ;@;i/; "Kcomma-delimited-list is deprecated. Please use delimited-list instead.;;+o;# ;@;i0; [;"delimited-list;"[;${;"comma-delimited-list;"[:@template"À// makes a list inline. @mixin inline-list { list-style-type: none; &, & li { margin: 0px; padding: 0px; display: inline; } } // makes an inline list delimited with the passed string. // Defaults to making a comma-separated list. // // Please make note of the browser support issues before using this mixin: // // use of `content` and `:after` is not fully supported in all browsers. // See quirksmode for the [support matrix](http://www.quirksmode.org/css/contents.html#t15) // // `:last-child` is not fully supported. // see quirksmode for the [support matrix](http://www.quirksmode.org/css/contents.html#t29). // // IE8 ignores rules that are included on the same line as :last-child // see http://www.richardscarrott.co.uk/posts/view/ie8-last-child-bug for details @mixin delimited-list($separator: ", ") { @include inline-list; li { &:after { content: $separator; } &:last-child { &:after { content: ""; } } &.last { &:after { content: ""; } } } } // See [delimited-list](#mixin-delimited-list) // @deprecated @mixin comma-delimited-list { @warn "comma-delimited-list is deprecated. Please use delimited-list instead."; @include delimited-list; }