Re: Best way to use LESS CSS with CF?

2013-09-16 Thread Billy Cravens
Calling Charlie Arehart, you are being paged :-) All CFMeetups are recorded for posterity, and while seemingly inactive, Charlie is always open to folks presenting. Billy Cravens bdcrav...@gmail.com On Sep 10, 2013, at 4:38 PM, Nathan Strutz str...@gmail.com wrote: I don't think it's

RE: Best way to use LESS CSS with CF?

2013-09-10 Thread Rick Faircloth
Subject: Best way to use LESS CSS with CF? Hi, all... Anyone using LESS with their CSS? I'm trying to get a handle on using LESS with my CSS, but I'm not quite getting it to work. I'm including the styles.less and the less.js files, but I'm missing something, because the variables don't affect

Re: Best way to use LESS CSS with CF?

2013-09-10 Thread Steve 'Cutter' Blades
Subject: Re: Best way to use LESS CSS with CF? You compile LESS down to css files, you don't serve it up to the browser. I like cfstatic for asset management. It can also compile LESS on the fly. Steve 'Cutter' Blades Adobe Community Professional Adobe Certified Expert Advanced Macromedia

RE: Best way to use LESS CSS with CF?

2013-09-10 Thread Rick Faircloth
for the feedback! Rick -Original Message- From: Steve 'Cutter' Blades [mailto:cold.fus...@cutterscrossing.com] Sent: Tuesday, September 10, 2013 7:58 AM To: cf-talk Subject: Re: Best way to use LESS CSS with CF? As a heavy Bootstrap user, I use LESS constantly. Once you really dig

RE: Best way to use LESS CSS with CF?

2013-09-10 Thread Che Vilnonis
way to use LESS CSS with CF? I'm just now looking seriously into LESS and its usage. So far, I've really only looked at its use of variables. As far as variables are concerned, I don't see much difference between using variables and classes. I can define, say, a class this way in CSS

Re: Best way to use LESS CSS with CF?

2013-09-10 Thread Steve 'Cutter' Blades
, September 09, 2013 8:19 AM To: cf-talk Subject: Re: Best way to use LESS CSS with CF? You compile LESS down to css files, you don't serve it up to the browser. I like cfstatic for asset management. It can also compile LESS on the fly. Steve 'Cutter' Blades Adobe Community Professional Adobe

Re: Best way to use LESS CSS with CF?

2013-09-10 Thread Claude Schnéegans
Apparently, this looks like a CSS prepocessor. But I do not see anything that cannot be done with CF. So what is the advantage of using yet another technology? ~| Order the Adobe Coldfusion Anthology now!

Re: Best way to use LESS CSS with CF?

2013-09-10 Thread Steve 'Cutter' Blades
You're right, you could do something like this with CF. But why rewrite the wheel when documented frameworks already exist that can do it for you? Now, if you need something that one of these frameworks can not accomplish for you... Steve 'Cutter' Blades Adobe Community Professional Adobe

RE: Best way to use LESS CSS with CF?

2013-09-10 Thread Rick Faircloth
: Best way to use LESS CSS with CF? Apparently, this looks like a CSS prepocessor. But I do not see anything that cannot be done with CF. So what is the advantage of using yet another technology? ~| Order the Adobe Coldfusion

Re: Best way to use LESS CSS with CF?

2013-09-10 Thread Claude Schnéegans
But why rewrite the wheel when documented frameworks already exist Learning another language to do what can be done as easily by the language I've been using for years looks like reinventing the wheel to me. ~| Order the

Re: Best way to use LESS CSS with CF?

2013-09-10 Thread Steve 'Cutter' Blades
Maybe you can save everyone the trouble and write the CFLESS equivelant, a la CFWheels;) Steve 'Cutter' Blades Adobe Community Professional Adobe Certified Expert Advanced Macromedia ColdFusion MX 7 Developer http://cutterscrossing.com Co-Author Learning Ext JS 3.2 Packt

RE: Best way to use LESS CSS with CF?

2013-09-10 Thread Rick Faircloth
...@cutterscrossing.com] Sent: Tuesday, September 10, 2013 11:00 AM To: cf-talk Subject: Re: Best way to use LESS CSS with CF? Variables are on small advantage. It's nice to be able to set a variable for a color, for instance, and reuse it in several hundred locations, in a variety of scenarios

Re: Best way to use LESS CSS with CF?

2013-09-10 Thread Claude Schnéegans
How would you perform CSS pre-processing with CF? Well, if the job is just to create dynamic CSS, CF can do the same way it can create dynamic HTML. It can either create static .CSS files whenever styles muste be changed. For instance, in my CMS I have a styles editor with all parameters

Re: Best way to use LESS CSS with CF?

2013-09-10 Thread Billy Cravens
LESS (and SASS/SCSS) are common, widely used CSS preprocessors. Frameworks like Bootstrap come with LESS files. I could also write my own database use XML files and CF's XML/struct/array capabilities, but that would be quite ridiculous. Billy Cravens bdcrav...@gmail.com On Sep 10, 2013,

Re: Best way to use LESS CSS with CF?

2013-09-10 Thread Mike K
t why rewrite the wheel when documented frameworks already exist Learning another language to do what can be done as easily by the language I've been using for years looks like reinventing the wheel to me. That's the advantage of Less (and SASS too for that matter) - you dont learn any new

Re: Best way to use LESS CSS with CF?

2013-09-10 Thread Nathan Strutz
I don't think it's recorded anywhere, but if you want me to give it somewhere, let me know. ;) nathan strutz [www.dopefly.com] [about.me/nathanstrutz] On Tue, Sep 10, 2013 at 1:10 PM, Billy Cravens bdcrav...@gmail.com wrote: Surprised I haven't seen info on Nathan Strutz's CF+LESS talk

Re: Best way to use LESS CSS with CF?

2013-09-10 Thread Billy Cravens
Surprised I haven't seen info on Nathan Strutz's CF+LESS talk here: https://github.com/NathanStrutz/Write-LESS-CSS-Presentation-Material I know he's given this talk a few times; unsure if there's a recording anywhere. Billy Cravens bdcrav...@gmail.com On Sep 10, 2013, at 1:11 PM, Roger

Re: Best way to use LESS CSS with CF?

2013-09-10 Thread Roger Austin
On 9/10/2013 2:05 PM, =?ISO-8859-1?Q?Claude_Schn=E9egans wrote: How would you perform CSS pre-processing with CF? Well, if the job is just to create dynamic CSS, CF can do the same way it can create dynamic HTML. It can either create static .CSS files whenever styles muste be changed.

Re: Best way to use LESS CSS with CF?

2013-09-10 Thread Dean Lawrence
Rick, CFSTATIC (https://github.com/DominicWatson/cfstatic) will combine and minify both standard CSS and JS files as well as work with LESS file. I've used it in a number of projects and it works great. On Tue, Sep 10, 2013 at 11:47 AM, Rick Faircloth r...@whitestonemedia.comwrote: But one

Re: Best way to use LESS CSS with CF?

2013-09-09 Thread Steve 'Cutter' Blades
to use LESS CSS with CF? Hi, all... Anyone using LESS with their CSS? I'm trying to get a handle on using LESS with my CSS, but I'm not quite getting it to work. I'm including the styles.less and the less.js files, but I'm missing something, because the variables don't affect the output

Best way to use LESS CSS with CF?

2013-09-07 Thread Rick Faircloth
Hi, all... Anyone using LESS with their CSS? I'm trying to get a handle on using LESS with my CSS, but I'm not quite getting it to work. I'm including the styles.less and the less.js files, but I'm missing something, because the variables don't affect the output. Do I need some kind of

RE: Best way to use LESS CSS with CF?

2013-09-07 Thread Rick Faircloth
Subject: Best way to use LESS CSS with CF? Hi, all... Anyone using LESS with their CSS? I'm trying to get a handle on using LESS with my CSS, but I'm not quite getting it to work. I'm including the styles.less and the less.js files, but I'm missing something, because the variables don't affect