I'm only seeing none and Sass. If I look at the filter help for sass it hints at working with bosh sass and scss and it appears that if I name the file without an extension it's being interpreted as sass. At the bottom of the help file it talks about partials by naming them to begin with an _ so for example I should be able to name my partial _grid and include it in the main file via
@include 'grid' but it's not getting included. I'm getting the following in the resulting file @import url(grid.css); Here are my stylesheets *uticait <- Sass filter* @import compass // Other custom styles @import grid *_grid <- Sass filter* // From http://www.1kbgrid.com/ and http://heygrady.com/1kb-grid-system-and-sass // Grid configuration $columns: 12 $col_width: 60px $gutter: 20px $margin: $gutter / 2 $width: $columns * ($col_width + $gutter) // Make the block n columns wide, with an optional extra value to // alter the standard width to account for padding, borders, etc. // For example, if your column block has a 5px left and right padding, // call "grid-column(n, 10px)" @mixin grid-column($n: 1, $offset: 0) margin: 0 $margin width: $col_width * $n + $gutter * ($n - 1) - $offset overflow: hidden float: left display: inline @mixin grid-row width: $width margin: 0 auto overflow: hidden @mixin grid-row-inner margin: 0 ($margin * -1) width: auto display: inline-block // Adds n empty columns to the left of the block. @mixin grid-prepend($n: 1) margin-left: $n * ($col_width + $gutter) + $margin *Resulting uticait file* @charset "UTF-8"; @import url(_grid.css); *Resulting _grid file* /* line 93 */ .grid-row { width: 960px; margin: 0 auto; overflow: hidden; } /* line 99 */ .grid-row .grid-row { margin: 0 -10px; width: auto; display: inline-block; } so the _grid file is being converted to css but it's not being included into the main uticait file and instead being converted separately as in independent css file and not as a partial to be included in the main file. Bob
