<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" 
	xmlns:dc="http://purl.org/dc/elements/1.1/" 
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" 
	xmlns:admin="http://webns.net/mvcb/" 
	xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/" 
	xmlns:atom="http://www.w3.org/2005/Atom">
	
	<channel>
	
		<title>Getting Sassy with CSS</title>
		<link>http://www.sencha.com/blog/getting-sassy-with-css</link>
		<description>SASS, which stands for Syntactically Awesome Stylesheets, adds nested rules, variables, mixins, and selector inheritance on top of your normal CSS, which you compile before you deploy &#8212; so basically you write CSS like it&#8217;s 2099.</description>
		<dc:language>en-us</dc:language>
		<dc:creator>dave@sencha.com</dc:creator>
		<dc:rights>Copyright 2010</dc:rights>
		<dc:date>2010-06-29T19:47:04+00:00</dc:date>
		<admin:generatorAgent rdf:resource="http://expressionengine.com/" />
		<atom:link href="http://www.sencha.com/blog/comments-rss/639" rel="self" type="application/rss+xml" />
  
		
  
		<item>
      <title>Comment by TheeKKD</title>
      <description>**Windows Users** Ruby 1.9.2&#45;p180 has an error in the _transition.scss file.

The file can be found at ~\Ruby192\lib\ruby\gems\1.9.1\gems\compass&#45;0.11.4\frameworks\compass\stylesheets\compass\css3

on my laptop it was C:\Ruby192\lib\ruby\gems\1.9.1\gems\compass&#45; 0.11.4\frameworks\compass\stylesheets\compass\css3

Correct [line 106]

if($transition&#45;3, $transition&#45;3, $default&#45;transition&#45;fuciton)

With

if($transition&#45;3, $transition&#45;3, $default&#45;transition&#45;function) 

As you can see at the end of the original “function” is spelled incorrectly, consequently stopping your .scss file from generating. Simply making this correction should resolve any generating problems such as the one I had.</description>
      <content:encoded><![CDATA[<p>**Windows Users** Ruby 1.9.2-p180 has an error in the _transition.scss file.</p>

<p>The file can be found at ~\Ruby192\lib\ruby\gems\1.9.1\gems\compass-0.11.4\frameworks\compass\stylesheets\compass\css3</p>

<p>on my laptop it was C:\Ruby192\lib\ruby\gems\1.9.1\gems\compass- 0.11.4\frameworks\compass\stylesheets\compass\css3</p>

<p>Correct [line 106]</p>

<p>if($transition-3, $transition-3, $default-transition-fuciton)</p>

<p>With</p>

<p>if($transition-3, $transition-3, $default-transition-function) </p>

<p>As you can see at the end of the original “function” is spelled incorrectly, consequently stopping your .scss file from generating. Simply making this correction should resolve any generating problems such as the one I had.</p>]]></content:encoded>
      <pubDate>Sat, 09 Jul 2011 01:06 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:23828#date:01:06</guid>
    </item>
  
		<item>
      <title>Comment by Rogie</title>
      <description>i love how it is simply assumed that if you are a developer, you work on a mac  i tried to explain something over the phone to a friend and &#8220;Now fire up your terminal.&#8221; was countered by &#8220;What is that? Like the Command Prompt?&#8221;. Needless to say, i couldn&#8217;t help my friend.</description>
      <content:encoded><![CDATA[<p>i love how it is simply assumed that if you are a developer, you work on a mac <img src="/images/smileys/smile.gif" width="19" height="19" alt="smile" style="border:0;" /><img src="/images/smileys/smile.gif" width="19" height="19" alt="smile" style="border:0;" /> i tried to explain something over the phone to a friend and &#8220;Now fire up your terminal.&#8221; was countered by &#8220;What is that? Like the Command Prompt?&#8221;. Needless to say, i couldn&#8217;t help my friend.</p>]]></content:encoded>
      <pubDate>Fri, 01 Jul 2011 10:50 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:23663#date:10:50</guid>
    </item>
  
		<item>
      <title>Comment by Lee Probert</title>
      <description>compiler warning informs me that ...

The linear&#45;gradient mixin is deprecated. Instead use: @include background&#45;image(linear&#45;gradient(#20425e, #336a98 4%, #3d7fb6))

The change works and is implemented like so ...

@include background&#45;image(linear&#45;gradient(color&#45;stops(darken($base_color, 30%), darken($base_color, 15%) 4%, darken($base_color, 7%))));</description>
      <content:encoded><![CDATA[<p>compiler warning informs me that ...</p>

<p>The linear-gradient mixin is deprecated. Instead use: @include background-image(linear-gradient(#20425e, #336a98 4%, #3d7fb6))</p>

<p>The change works and is implemented like so ...</p>

<p>@include background-image(linear-gradient(color-stops(darken($base_color, 30%), darken($base_color, 15%) 4%, darken($base_color, 7%))));</p>]]></content:encoded>
      <pubDate>Wed, 30 Mar 2011 11:49 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:18958#date:11:49</guid>
    </item>
  
		<item>
      <title>Comment by Edgar</title>
      <description>Windows tutorial from scratch
I spent some time to figure out how to do this on Windows. Here&#8217;s my solution

1. Download and install Ruby (google: &#8220;Ruby installer windows&#8221; ). When installing, select the two check boxes: adding executables to PATH, and associate *.rb files to Ruby.

2. Download Ruby Gems (google: &#8220;Ruby Gems&#8221;). Uncompress and run Instal.rb

3. Now you are ready to run start this tutorial and run the follwing command lines (on the top of this page):

C:\&amp;gt; gem install haml
Successfully installed haml&#45;3.0.25
1 gem installed
Installing ri documentation for haml&#45;3.0.25&#8230;
Installing RDoc documentation for haml&#45;3.0.25&#8230;
C:\&amp;gt;

and 

C:\&amp;gt; gem install compass
Successfully installed compass&#45;0.10.6
1 gem installed
Installing ri documentation for compass&#45;0.10.6&#8230;
Installing RDoc documentation for compass&#45;0.10.6&#8230;
C:\&amp;gt;</description>
      <content:encoded><![CDATA[<p><b>Windows tutorial from scratch</b><br />
I spent some time to figure out how to do this on Windows. Here&#8217;s my solution</p>

<p>1. Download and <b>install Ruby</b> (google: &#8220;Ruby installer windows&#8221; ). When installing, select the two check boxes: adding executables to PATH, and associate *.rb files to Ruby.</p>

<p>2. <b>Download Ruby Gems</b> (google: &#8220;Ruby Gems&#8221;). Uncompress and <b>run Instal.rb</b></p>

<p>3. Now you are ready to run start this tutorial and run the follwing command lines (on the top of this page):<br />
<code><br />
<b>C:\&gt; gem install haml</b><br />
Successfully installed haml-3.0.25<br />
1 gem installed<br />
Installing ri documentation for haml-3.0.25&#8230;<br />
Installing RDoc documentation for haml-3.0.25&#8230;<br />
C:\&gt;<br />
</code><br />
and <br />
<code><br />
<b>C:\&gt; gem install compass</b><br />
Successfully installed compass-0.10.6<br />
1 gem installed<br />
Installing ri documentation for compass-0.10.6&#8230;<br />
Installing RDoc documentation for compass-0.10.6&#8230;<br />
C:\&gt;<br />
</code></p>]]></content:encoded>
      <pubDate>Tue, 25 Jan 2011 09:53 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15859#date:09:53</guid>
    </item>
  
		<item>
      <title>Comment by mark josephat</title>
      <description>david, the article is great, and the buttons work on the latest firefox, safari and chrome, but alas they do not work in Opera 11 *sad face*</description>
      <content:encoded><![CDATA[<p>david, the article is great, and the buttons work on the latest firefox, safari and chrome, but alas they do not work in Opera 11 *sad face*</p>]]></content:encoded>
      <pubDate>Sun, 16 Jan 2011 14:59 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15858#date:14:59</guid>
    </item>
  
		<item>
      <title>Comment by Shaggy</title>
      <description>&#8220;$button_size/2&#8221;
Nice example but not really necessary a large border radius will never exceed what&#8217;s needed.
Put a large radius like 1em on something and check it in browsers.. It looks fine.
Someone let me know if I&#8217;m wrong here but it seems to auto adjust.

Color manipulation seems to be the greatest use of variable css. like &#8220;give me the main color but 50% lighter&#8221;

Nice stuff though.</description>
      <content:encoded><![CDATA[<p>&#8220;$button_size/2&#8221;<br />
Nice example but not really necessary a large border radius will never exceed what&#8217;s needed.<br />
Put a large radius like 1em on something and check it in browsers.. It looks fine.<br />
Someone let me know if I&#8217;m wrong here but it seems to auto adjust.</p>

<p>Color manipulation seems to be the greatest use of variable css. like &#8220;give me the main color but 50% lighter&#8221;</p>

<p>Nice stuff though.</p>]]></content:encoded>
      <pubDate>Mon, 27 Dec 2010 22:05 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15857#date:22:05</guid>
    </item>
  
		<item>
      <title>Comment by Andrew Lenards</title>
      <description>The link to the Android theme is *still* broken.</description>
      <content:encoded><![CDATA[<p>The link to the Android theme is *still* broken.</p>]]></content:encoded>
      <pubDate>Mon, 22 Nov 2010 15:39 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15856#date:15:39</guid>
    </item>
  
		<item>
      <title>Comment by laurent j</title>
      <description>Hi,

I was looking about a way to easier my life with css and i discover this week, less, then saas then the html5 boiler plate project.

I&#8217;m on mac so there&#8217;s an &#8220;less app&#8221; that compile automatically .less in .css when we save less file in the IDE.

I didn&#8217;t try saas at the moment but i will try. 

What do you think about turbine project ?
http://turbine.peterkroener.de/docs.php</description>
      <content:encoded><![CDATA[<p>Hi,</p>

<p>I was looking about a way to easier my life with css and i discover this week, less, then saas then the html5 boiler plate project.</p>

<p>I&#8217;m on mac so there&#8217;s an &#8220;less app&#8221; that compile automatically .less in .css when we save less file in the IDE.</p>

<p>I didn&#8217;t try saas at the moment but i will try. </p>

<p>What do you think about turbine project ?<br />
<a href="http://turbine.peterkroener.de/docs.php">http://turbine.peterkroener.de/docs.php</a></p>]]></content:encoded>
      <pubDate>Sun, 21 Nov 2010 17:52 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15855#date:17:52</guid>
    </item>
  
		<item>
      <title>Comment by web tasar?m fiyatlar?</title>
      <description>It&#8217;s very useful&#8230;.

Thanks a lot&#8230;.</description>
      <content:encoded><![CDATA[<p>It&#8217;s very useful&#8230;.</p>

<p>Thanks a lot&#8230;.</p>]]></content:encoded>
      <pubDate>Thu, 11 Nov 2010 09:18 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15854#date:09:18</guid>
    </item>
  
		<item>
      <title>Comment by Dairo</title>
      <description>Great tutorial. It helped me a lot.

@Sergiu I tried this tutorial on a windows computer and it worked fine. The only difference is that you have to use your windows commandline (cmd.exe). 
To install SASS and Compass just enter &#8216;gem install haml&#8217; into your commandline to install SASS and &#8216;gem install compass&#8217; to  install compass. That&#8217;s the only difference. GOOD LUCK!</description>
      <content:encoded><![CDATA[<p>Great tutorial. It helped me a lot.</p>

<p>@Sergiu I tried this tutorial on a windows computer and it worked fine. The only difference is that you have to use your windows commandline (cmd.exe). <br />
To install SASS and Compass just enter &#8216;gem install haml&#8217; into your commandline to install SASS and &#8216;gem install compass&#8217; to  install compass. That&#8217;s the only difference. GOOD LUCK!</p>]]></content:encoded>
      <pubDate>Wed, 20 Oct 2010 14:54 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15853#date:14:54</guid>
    </item>
  
		<item>
      <title>Comment by Stanley</title>
      <description>The link to the Android sass file is broken</description>
      <content:encoded><![CDATA[<p>The link to the Android sass file is broken</p>]]></content:encoded>
      <pubDate>Tue, 28 Sep 2010 08:05 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15852#date:08:05</guid>
    </item>
  
		<item>
      <title>Comment by George Penston</title>
      <description>This is a great post and could use plenty more of these detailing how to use tools like these to make the most of web development for modern web and mobile browsers.

One little silly point I wanted to make though. From what I&#8217;ve been reading up on HTML5, there&#8217;s no need to include type, media, and charset in your CSS link code. HTML5 expects a style tag to be CSS now (as it does with script tags as well). Something I&#8217;ve picked up on the great Dive into HTML5 site (http://diveintohtml5.org/) and the new HTML5 for Web Designers book from Jeremy Keith. So far a great read.</description>
      <content:encoded><![CDATA[<p>This is a great post and could use plenty more of these detailing how to use tools like these to make the most of web development for modern web and mobile browsers.</p>

<p>One little silly point I wanted to make though. From what I&#8217;ve been reading up on HTML5, there&#8217;s no need to include type, media, and charset in your CSS link code. HTML5 expects a style tag to be CSS now (as it does with script tags as well). Something I&#8217;ve picked up on the great Dive into HTML5 site (<a href="http://diveintohtml5.org/">http://diveintohtml5.org/</a>) and the new HTML5 for Web Designers book from Jeremy Keith. So far a great read.</p>]]></content:encoded>
      <pubDate>Tue, 20 Jul 2010 18:54 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15851#date:18:54</guid>
    </item>
  
		<item>
      <title>Comment by Oliver Sumpton</title>
      <description>nice, sounds like CSS Scaffold</description>
      <content:encoded><![CDATA[<p>nice, sounds like CSS Scaffold <img src="/images/smileys/smile.gif" width="19" height="19" alt="smile" style="border:0;" /></p>]]></content:encoded>
      <pubDate>Sun, 04 Jul 2010 20:45 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15850#date:20:45</guid>
    </item>
  
		<item>
      <title>Comment by Toddy</title>
      <description>Wonderful. I hope to see much more tutorials on sass and sencha theming in the future. I&#8217;m considering to use Sencha to develop a Phonegap based application.</description>
      <content:encoded><![CDATA[<p>Wonderful. I hope to see much more tutorials on sass and sencha theming in the future. I&#8217;m considering to use Sencha to develop a Phonegap based application.</p>]]></content:encoded>
      <pubDate>Fri, 02 Jul 2010 15:39 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15849#date:15:39</guid>
    </item>
  
		<item>
      <title>Comment by Jez</title>
      <description>Re: Less vs Sass,

We used Less for a previous project, but ended up moving to Sass

The Sass compiler was (is?) more mature, and the language feels more consistent (see the &#8216;&amp;amp;&#8217; operator in Sass vs the :hover special case in Less). The editor/tool support was quite a bit better too.

Sass doesn&#8217;t have a javascript in&#45;browser implementation (afaik), but for rapid development it can watch a folder/file for changes and automatically recompile to static CSS files.

Plus there&#8217;s a firebug plugin, so you get Sass line numbers / references instead of compiled CSS line numbers: https://addons.mozilla.org/en&#45;US/firefox/addon/103988/</description>
      <content:encoded><![CDATA[<p>Re: Less vs Sass,</p>

<p>We used Less for a previous project, but ended up moving to Sass</p>

<p>The Sass compiler was (is?) more mature, and the language feels more consistent (see the &#8216;&amp;&#8217; operator in Sass vs the :hover special case in Less). The editor/tool support was quite a bit better too.</p>

<p>Sass doesn&#8217;t have a javascript in-browser implementation (afaik), but for rapid development it can watch a folder/file for changes and automatically recompile to static CSS files.</p>

<p>Plus there&#8217;s a firebug plugin, so you get Sass line numbers / references instead of compiled CSS line numbers: <a href="https://addons.mozilla.org/en-US/firefox/addon/103988/">https://addons.mozilla.org/en-US/firefox/addon/103988/</a></p>]]></content:encoded>
      <pubDate>Fri, 02 Jul 2010 10:03 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15848#date:10:03</guid>
    </item>
  
		<item>
      <title>Comment by Joeri Sebrechts</title>
      <description>For ExtJS 4, perhaps you could consider abandoning the notion that all browsers have to render visually identical. With simplified markup and a CSS3 theme you could have a very rich UI on IE9, FF4 and newer webkit, and fall back to a simpler look on older browsers (without gradients, shadows or rounded corners).</description>
      <content:encoded><![CDATA[<p>For ExtJS 4, perhaps you could consider abandoning the notion that all browsers have to render visually identical. With simplified markup and a CSS3 theme you could have a very rich UI on IE9, FF4 and newer webkit, and fall back to a simpler look on older browsers (without gradients, shadows or rounded corners).</p>]]></content:encoded>
      <pubDate>Fri, 02 Jul 2010 09:47 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15847#date:09:47</guid>
    </item>
  
		<item>
      <title>Comment by Chris Eppstein</title>
      <description>@paulirish Here&#8217;s a blog post that I wrote to describe the differences between sass and compass: http://chriseppstein.github.com/blog/2009/09/30/what&#45;is&#45;compass/

@steffen Unlike Less, Sass offers true inheritance&#8212;what less provides is a mixin&#45;like behavior that doesn&#8217;t always provide the expected effect when working with complex selectors. See here for more info: http://nex&#45;3.com/posts/99&#45;selector&#45;inheritance&#45;the&#45;easy&#45;way&#45;introducing&#45;extend</description>
      <content:encoded><![CDATA[<p>@paulirish Here&#8217;s a blog post that I wrote to describe the differences between sass and compass: <a href="http://chriseppstein.github.com/blog/2009/09/30/what-is-compass/">http://chriseppstein.github.com/blog/2009/09/30/what-is-compass/</a></p>

<p>@steffen Unlike Less, Sass offers true inheritance&#8212;what less provides is a mixin-like behavior that doesn&#8217;t always provide the expected effect when working with complex selectors. See here for more info: <a href="http://nex-3.com/posts/99-selector-inheritance-the-easy-way-introducing-extend">http://nex-3.com/posts/99-selector-inheritance-the-easy-way-introducing-extend</a></p>]]></content:encoded>
      <pubDate>Wed, 30 Jun 2010 22:07 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15846#date:22:07</guid>
    </item>
  
		<item>
      <title>Comment by Steven Roussey</title>
      <description>The one thing Less has going for it is that it can run in Javascript itself, rather than yet another language to have to install. It also means that you can do live stuff in the browser, and offline web apps.

Now if SASS had a compiler in JS&#8230;</description>
      <content:encoded><![CDATA[<p>The one thing Less has going for it is that it can run in Javascript itself, rather than yet another language to have to install. It also means that you can do live stuff in the browser, and offline web apps.</p>

<p>Now if SASS had a compiler in JS&#8230;</p>]]></content:encoded>
      <pubDate>Wed, 30 Jun 2010 21:42 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15845#date:21:42</guid>
    </item>
  
		<item>
      <title>Comment by David Kaneda</title>
      <description>Thanks for the comments everyone!

A few people asked about our choice of SASS over Less. In the beginning, we spent a fair amount of time debating this, and our decision boiled down to a few things:

* More people in the office were familiar with SASS than Less (I used to use Less myself).
* SASS seemed to build faster
* The color functions in SASS are more robust (one feature which we use very heavily)
* The compass extensions were quite useful

Again, these decision makers aren&#8217;t definitive, and Less is still a great, similar, alternative.

@Paul: I kind of feel the same way, in that there shouldn&#8217;t be competition that is this similar. From what I heard last night, there are a lot of architectural differences, but on the surface, they&#8217;re still VERY similar. As mentioned, the color functions in SASS (and the Compass extensions) were the tipping points for us.

@Dustin: Thanks for the link on auto&#45;compiling or &#8220;watching&#8221; directories. I wanted to get into some of that (and also how to set up Textmate to compile on save), but figured it was outside the scope of this article.

@Conor: We definitely have an advantage in Touch with the amount of CSS3 we can leverage, but we&#8217;re certainly exploring the possibility of using in Ext JS 4.</description>
      <content:encoded><![CDATA[<p>Thanks for the comments everyone!</p>

<p>A few people asked about our choice of SASS over Less. In the beginning, we spent a fair amount of time debating this, and our decision boiled down to a few things:</p>

<p>* More people in the office were familiar with SASS than Less (I used to use Less myself).<br />
* SASS seemed to build faster<br />
* The color functions in SASS are <a href="http://nex-3.com/posts/89-powerful-color-manipulation-with-sass">more robust</a> (one feature which we use very heavily)<br />
* The compass extensions were quite useful</p>

<p>Again, these decision makers aren&#8217;t definitive, and Less is still a great, similar, alternative.</p>

<p>@Paul: I kind of feel the same way, in that there shouldn&#8217;t be competition that is this similar. From what I heard last night, there are a lot of architectural differences, but on the surface, they&#8217;re still VERY similar. As mentioned, the color functions in SASS (and the Compass extensions) were the tipping points for us.</p>

<p>@Dustin: Thanks for the link on auto-compiling or &#8220;watching&#8221; directories. I wanted to get into some of that (and also how to set up Textmate to compile on save), but figured it was outside the scope of this article.</p>

<p>@Conor: We definitely have an advantage in Touch with the amount of CSS3 we can leverage, but we&#8217;re certainly exploring the possibility of using in Ext JS 4.</p>]]></content:encoded>
      <pubDate>Wed, 30 Jun 2010 18:41 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15844#date:18:41</guid>
    </item>
  
		<item>
      <title>Comment by B</title>
      <description>Nicely done and great examples. Sass here I come.</description>
      <content:encoded><![CDATA[<p>Nicely done and great examples. Sass here I come.</p>]]></content:encoded>
      <pubDate>Wed, 30 Jun 2010 13:43 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15843#date:13:43</guid>
    </item>
  
		<item>
      <title>Comment by Steffen Hiller</title>
      <description>Very valuable such posts in which we see how you guys roll it.

Though, I wonder why not LESS?
I was never an instant fan of SASS, rather an instant fan of LESS.

E.g. extending other classes by just writing
#header &#123;
&amp;nbsp; .rounded_corners;
&#125;
is pretty clever and beautiful I think, instead of using explicitly @extend.

Also using dashes in variable names feels more CSSy, and using @ more Ruby than PHP. 

After all this is just syntax sugar stuff, still would be interesting to know why not Less?
By accident stumbled about this post of you in Google: http://9&#45;bits.com/post/126438804/less&#45;css

Either way, switching from pure CSS to a more clever CSS implementation is a brave and smart move.</description>
      <content:encoded><![CDATA[<p>Very valuable such posts in which we see how you guys roll it.</p>

<p>Though, I wonder why not LESS?<br />
I was never an instant fan of SASS, rather an instant fan of LESS.</p>

<p>E.g. extending other classes by just writing<br />
#header &#123;<br />
&nbsp; .rounded_corners;<br />
&#125;<br />
is pretty clever and beautiful I think, instead of using explicitly @extend.</p>

<p>Also using dashes in variable names feels more CSSy, and using @ more Ruby than PHP. <img src="/images/smileys/wink.gif" width="19" height="19" alt="wink" style="border:0;" /></p>

<p>After all this is just syntax sugar stuff, still would be interesting to know why not Less?<br />
By accident stumbled about this post of you in Google: <a href="http://9-bits.com/post/126438804/less-css">http://9-bits.com/post/126438804/less-css</a></p>

<p>Either way, switching from pure CSS to a more clever CSS implementation is a brave and smart move. <img src="/images/smileys/smile.gif" width="19" height="19" alt="smile" style="border:0;" /></p>]]></content:encoded>
      <pubDate>Wed, 30 Jun 2010 13:36 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15842#date:13:36</guid>
    </item>
  
		<item>
      <title>Comment by Conor Armstrong</title>
      <description>Will something similar work for themes in Ext JS?</description>
      <content:encoded><![CDATA[<p>Will something similar work for themes in Ext JS?</p>]]></content:encoded>
      <pubDate>Wed, 30 Jun 2010 09:05 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15841#date:09:05</guid>
    </item>
  
		<item>
      <title>Comment by Henry P</title>
      <description>Great Job</description>
      <content:encoded><![CDATA[<p>Great Job</p>]]></content:encoded>
      <pubDate>Wed, 30 Jun 2010 08:24 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15840#date:08:24</guid>
    </item>
  
		<item>
      <title>Comment by Hans Kristian</title>
      <description>Great article David. Thanks.
One minor thing I found when playing around &#45; When pressing the &#8220;third step&#8221; &#45; buttons in Chrome 5 (Win), the darkened rectangle is not rounded. It works fine in Firefox</description>
      <content:encoded><![CDATA[<p>Great article David. Thanks.<br />
One minor thing I found when playing around - When pressing the &#8220;third step&#8221; - buttons in Chrome 5 (Win), the darkened rectangle is not rounded. It works fine in Firefox</p>]]></content:encoded>
      <pubDate>Wed, 30 Jun 2010 06:56 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15839#date:06:56</guid>
    </item>
  
		<item>
      <title>Comment by Awesomee Bob</title>
      <description>The large buttons don&#8217;t seem to render correctly in Chrome when you click on them. All buttons in that example all display a dark rectangle slightly smaller than the buttons themselves. Just a little QA feedback.</description>
      <content:encoded><![CDATA[<p>The large buttons don&#8217;t seem to render correctly in Chrome when you click on them. All buttons in that example all display a dark rectangle slightly smaller than the buttons themselves. Just a little QA feedback.</p>]]></content:encoded>
      <pubDate>Wed, 30 Jun 2010 06:30 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15838#date:06:30</guid>
    </item>
  
		<item>
      <title>Comment by Paul Irish</title>
      <description>This is awesome beyond words. :x

Nah truly this is a great guide. SCSS makes sass so much more attractive now..
One thing I was hoping to get out of this.. can you explain the difference between sass and compass? I still don&#8217;t grok why they aren&#8217;t the same thing. :/</description>
      <content:encoded><![CDATA[<p>This is awesome beyond words. :x</p>

<p>Nah truly this is a great guide. SCSS makes sass so much more attractive now..<br />
One thing I was hoping to get out of this.. can you explain the difference between sass and compass? I still don&#8217;t grok why they aren&#8217;t the same thing. :/</p>]]></content:encoded>
      <pubDate>Wed, 30 Jun 2010 06:20 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15837#date:06:20</guid>
    </item>
  
		<item>
      <title>Comment by Sergiu</title>
      <description>Very nice. Is there a Windows solution for this?</description>
      <content:encoded><![CDATA[<p>Very nice. Is there a Windows solution for this?</p>]]></content:encoded>
      <pubDate>Wed, 30 Jun 2010 05:46 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15836#date:05:46</guid>
    </item>
  
		<item>
      <title>Comment by Dustin Hoffman</title>
      <description>http://nex&#45;3.com/posts/90&#45;auto&#45;compile&#45;sass&#45;files&#45;with&#45;sass&#45;3</description>
      <content:encoded><![CDATA[<p><a href="http://nex-3.com/posts/90-auto-compile-sass-files-with-sass-3">http://nex-3.com/posts/90-auto-compile-sass-files-with-sass-3</a></p>]]></content:encoded>
      <pubDate>Wed, 30 Jun 2010 05:35 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15835#date:05:35</guid>
    </item>
  
		<item>
      <title>Comment by Michael</title>
      <description>That command line tool is truly outrageous. Truly, truly, truly outrageous.</description>
      <content:encoded><![CDATA[<p>That command line tool is truly outrageous. Truly, truly, truly outrageous.</p>]]></content:encoded>
      <pubDate>Wed, 30 Jun 2010 05:33 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15834#date:05:33</guid>
    </item>
  
		<item>
      <title>Comment by Mats</title>
      <description>Looks superb, great work! 

/Mats</description>
      <content:encoded><![CDATA[<p>Looks superb, great work! <img src="/images/smileys/smile.gif" width="19" height="19" alt="smile" style="border:0;" /></p>

<p>/Mats</p>]]></content:encoded>
      <pubDate>Wed, 30 Jun 2010 04:45 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15833#date:04:45</guid>
    </item>
  
		<item>
      <title>Comment by Jackson</title>
      <description>Thanks for sharing this article, clearly explained.</description>
      <content:encoded><![CDATA[<p>Thanks for sharing this article, clearly explained.</p>]]></content:encoded>
      <pubDate>Wed, 30 Jun 2010 01:36 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15832#date:01:36</guid>
    </item>
  
		<item>
      <title>Comment by Chris Scott</title>
      <description>Nice.&amp;nbsp; Good to see Sencha&#8217;s got Sass on the radar.&amp;nbsp; Keep your eyes on Less too.&amp;nbsp; http://lesscss.org/</description>
      <content:encoded><![CDATA[<p>Nice.&nbsp; Good to see Sencha&#8217;s got Sass on the radar.&nbsp; Keep your eyes on Less too.&nbsp; <a href="http://lesscss.org/">http://lesscss.org/</a></p>]]></content:encoded>
      <pubDate>Tue, 29 Jun 2010 23:30 GMT</pubDate>
      <guid isPermaLink="false">http://www.sencha.com/blog//getting-sassy-with-css#id:15831#date:23:30</guid>
    </item>
  
		
	</channel>
</rss>