Comments on: CSS preprocessor http://eikke.com/css-preprocessor/ 'cause this is what I do Tue, 04 Dec 2012 00:03:23 +0000 hourly 1 http://wordpress.org/?v=3.4.1 By: sjsqmgg http://eikke.com/css-preprocessor/comment-page-1/#comment-50293 sjsqmgg Sat, 14 May 2011 16:01:16 +0000 http://eikke.com/2007/12/23/css-preprocessor/#comment-50293 b7RaHR <a href="http://sxnnbrlharph.com/" rel="nofollow">sxnnbrlharph</a> b7RaHR sxnnbrlharph

]]>
By: Andi http://eikke.com/css-preprocessor/comment-page-1/#comment-49740 Andi Thu, 12 May 2011 11:10:47 +0000 http://eikke.com/2007/12/23/css-preprocessor/#comment-49740 Fell out of bed feeling down. This has brgitehned my day! Fell out of bed feeling down. This has brgitehned my day!

]]>
By: zalun http://eikke.com/css-preprocessor/comment-page-1/#comment-20927 zalun Thu, 30 Apr 2009 08:21:41 +0000 http://eikke.com/2007/12/23/css-preprocessor/#comment-20927 This should solve your problem http://www.djangosnippets.org/snippets/432/ This should solve your problem
http://www.djangosnippets.org/snippets/432/

]]>
By: nate http://eikke.com/css-preprocessor/comment-page-1/#comment-6239 nate Sun, 15 Jun 2008 21:56:29 +0000 http://eikke.com/2007/12/23/css-preprocessor/#comment-6239 Please check out <a href="http://wiki.framwurk.org/pmwiki.php/Main/CSSPP" title="CSSPP" rel="nofollow">CSSPP</a> Please check out CSSPP

]]>
By: James http://eikke.com/css-preprocessor/comment-page-1/#comment-4187 James Sat, 24 May 2008 19:09:17 +0000 http://eikke.com/2007/12/23/css-preprocessor/#comment-4187 Try p4, the Perl based macro processor. http://klicman.org/p4/ Try p4, the Perl based macro processor.
http://klicman.org/p4/

]]>
By: Nicolas http://eikke.com/css-preprocessor/comment-page-1/#comment-22 Nicolas Wed, 26 Dec 2007 10:14:33 +0000 http://eikke.com/2007/12/23/css-preprocessor/#comment-22 Stefan: Because my scripting framework/language (Django/Python) doesn't allow in-template calculations etc. I'd just like some offline functionality. The main issue, being able to refer to other element properties, is still not solved. Stefan: Because my scripting framework/language (Django/Python) doesn’t allow in-template calculations etc. I’d just like some offline functionality.

The main issue, being able to refer to other element properties, is still not solved.

]]>
By: Stefan Georg http://eikke.com/css-preprocessor/comment-page-1/#comment-16 Stefan Georg Tue, 25 Dec 2007 20:13:21 +0000 http://eikke.com/2007/12/23/css-preprocessor/#comment-16 why not just include style.php as your CSS file where you define $COLOR1 = "BLACK"; then where you need it font-color:= or use whatever scripting language your server supports? why not just include style.php as your CSS file where you define $COLOR1 = “BLACK”; then where you need it
font-color:= or use whatever scripting language your server supports?

]]>
By: Matthew W. S. Bell http://eikke.com/css-preprocessor/comment-page-1/#comment-15 Matthew W. S. Bell Mon, 24 Dec 2007 03:56:43 +0000 http://eikke.com/2007/12/23/css-preprocessor/#comment-15 If you're using the same font colour in more than one class of things, you should split that properties section out and use multiple selectors: .foo, #bar .baz, .bar:hover { color: #defaced; } .foo { height: 100%; } .baz { height: 500em; } Obviously, this isn't the only use case for a preprocessor. If you’re using the same font colour in more than one class of things, you should split that properties section out and use multiple selectors:

.foo, #bar .baz, .bar:hover {
color: #defaced;
}

.foo {
height: 100%;
}

.baz {
height: 500em;
}

Obviously, this isn’t the only use case for a preprocessor.

]]>
By: Nicolas http://eikke.com/css-preprocessor/comment-page-1/#comment-14 Nicolas Sun, 23 Dec 2007 23:33:31 +0000 http://eikke.com/2007/12/23/css-preprocessor/#comment-14 I know that's possible. This still doesn't allow calculations inside your CSS files though, and could introduce a huge amount of (unnecessary) classes. Even in relatively small stylesheets/sites it can become hard to know which stylesheet is used by which elements in the site. I know that’s possible. This still doesn’t allow calculations inside your CSS files though, and could introduce a huge amount of (unnecessary) classes. Even in relatively small stylesheets/sites it can become hard to know which stylesheet is used by which elements in the site.

]]>
By: Pavel http://eikke.com/css-preprocessor/comment-page-1/#comment-13 Pavel Sun, 23 Dec 2007 23:29:09 +0000 http://eikke.com/2007/12/23/css-preprocessor/#comment-13 xml elements can have several css classes, so you can create template css classes holding only one variable. no preprocessor needed for that. xml elements can have several css classes, so you can create template css classes holding only one variable. no preprocessor needed for that.

]]>