1
vote
2answers
35 views
SASS implementation for Java?
I'm looking for SASS implementation in Java (could be used with JSP/JSF). For Python I've found CleverCSS, but there is nothing for Java. Anyone heard something about this sort of tool for generating …
0
votes
1answer
22 views
SASS syntax highlighting does not work when bundle is installed along with HAML’s in Textmate?
I've encountered this issue on two different machines and can't figure out what the cause is.
SASS syntax highlighting works fine in TextMate when I install a SASS bundle like this. However, when I …
0
votes
2answers
188 views
Haml/Sass Syntax Highlighting in Notepad++?
Has anybody made this yet?
0
votes
1answer
35 views
Help with Sass mixin & variables (var is being ignored)
Hi guys, I have the following mixin in a sass partial:
=card-list
width: 180px
min-height: 150px
display: -moz-inline-stack
display: inline-block
vertical-align: top
margin: 5px
zoom: 1
…
2
votes
2answers
314 views
Using Haml & Sass with Eclipse
Are there any plugins for eclipse that add syntax highlighting and other niceties for editing Haml and Sass? Google searches only seem to point to a dead project on lucky-dip.net.
Note: it's Sass I'm …
0
votes
1answer
52 views
SASS and @font-face
I have the following CSS - how would I describe it in SASS? I've tried reverse compiling it with css2sass, and just keep getting errors.... is it my CSS (which works ;-) )?
@font-face {
…
3
votes
1answer
142 views
Even better support for HAML in Netbeans?
This plugin is pretty good, definitely better than plain-text.. but I'm longing for a little more. Code completion, the Netbeans code generator shortcuts, 'ri' integration for looking up documentation …
0
votes
1answer
47 views
SASS - define variable in for loop
I was hoping that defining variables in a loop would work in SASS but unfortunately I get errors saying that the variable isn't defined, here is what I tried
@for !i from 1 through 9
!foo = #000
…
1
vote
0answers
24 views
Changing the output directory of the resulting CSS file in Compass/Webby?
I want my resulting *.css file to land in the output/css directory instead of the stylesheets directory. How would I go about doing this?
I've already tried:
Compass.configuration do |config|
…
2
votes
4answers
110 views
DRY out my CSS, but want to keep the basic CSS syntax.
Starting a new rails project and we have a well-thought-out color palette, and want to capture that in one place. I have usually kept colors in the CSS, but I find I end up with all the same color in …
1
vote
1answer
139 views
How can I keep a div’s scrollbar at the bottom of the div using jQuery?
I have a div called #output, styled with overflow: scroll;. Using jQuery.ajax, it's being updated every x second. I'd like to have it so that when the scrollbar appears (after the divs filled up), it …
0
votes
1answer
119 views
Syntax highlight for Haml/Sass for Coda
Anyone know where I can get a syntax highlight for Haml/Sass for Coda?
0
votes
2answers
36 views
How can I quote strings in SASS?
I'm using SASS to generate a @font-face mixin, however this:
=remotefont(!name, !url)
@font-face
font-family = !name
src = url(!url + ".eot")
src = local(!name), url(!url + ".ttf") …
3
votes
3answers
255 views
Using SASS with ASP.NET
I'm looking into ways to use SASS (Syntactically Awesome StyleSheets) from the Ruby HAML package in an ASP.NET environment. Ideally, I would like compilation of SASS files into CSS to be a seamless …
0
votes
3answers
352 views
Best way to learn how to combine Blueprintcss and Compass/Sass?
I would like to apply Blueprintcss and Compass/Sass to a Rails project.
Should I learn Blueprint first or Compass/Sass first or are there any guides on how to use the two of these together?
Also, …
