@import 'facades/utilities'; // Creates a horizontal list, generally used for navigation elements. @mixin inline-list($padding: false) { @include box-reset; @include clearfix; @include no-list; li{ @include inline-block; white-space:nowrap; @if $padding{ padding-left:$padding; padding-right:$padding; } } } // 'alias' for compass compatability @mixin inline-block-list($padding:false){ @include inline-list($padding); } // Remove list bullets for a particular list item @mixin no-bullet { list-style-image : none; list-style-type : none; margin-left : 0px; } // Convert a list into "not" a list.. removing all bullets and padding. @mixin no-list { list-style: none; padding-left:0; li { @include no-bullet; } }