ndeet / plg_system_less

A Joomla! system plugin to compile .less files on the fly.
GNU Lesser General Public License v3.0
17 stars 13 forks source link

Joomla 3.1.5 #16

Closed jamesjwarren closed 11 years ago

jamesjwarren commented 11 years ago

After I upgraded to J3.1.5 the less php compiler casued issues with my template on re-compiling. Many warnings now appear in the chrome dev tools.

Also it interfered with another template I was also using at the time, see this issue: https://github.com/projectfork/Projectfork/issues/815

I don't know whether this is caused by something Joomla have changed? Wondering if anyone can shed any light on the issue?

ghost commented 11 years ago

I had similiar problems with an own template based on Protostar. Reason were 1 or 2 new LESS variables introduced by new Bootstrap version 2.3.2 in Joomla 3.1.5 that were not present in my template file variables.less. I compared old variables.less with new version and added missing ones in my template less files. Sorry, don't know which ones.

Am 11.09.2013 03:14, schrieb jamesjwarren:

After I upgraded to J3.1.5 the less php compiler casued issues with my template on re-compiling. Many warnings now appear in the chrome dev tools.

Also it interfered with another template I was also using at the time, see this issue: projectfork/Projectfork#815 https://github.com/projectfork/Projectfork/issues/815

I don't know whether this is caused by something Joomla have changed? Wondering if anyone can shed any light on the issue?

— Reply to this email directly or view it on GitHub https://github.com/ndeet/plg_system_less/issues/16.

jamesjwarren commented 11 years ago

Thanks for this info, it really helped! I checked through the updated protostar variables.less and indeed there were new variables. Copying these across to my template variables.less solved the issue. If anyone else has the issue its probably best to check through all the variables but in particular the 'COMPONENT VARIABLES' section is new. Cheers!

ndeet commented 11 years ago

Thanks guys for posting the solution to this issue.