horizon by default uses lesscpy (python) instead of lessc (javascript).
Obviously lesscpy did not like our less code.
So we changed this:
COMPRESS_PRECOMPILERS = (
('text/less', 'lesscpy {infile}'),
)
To this:
COMPRESS_PRECOMPILERS = (
('text/less', 'lessc {infile} {outfile}'),
)
Hi,
We intend to extend openstack's Horizon, which is a Django application. The
first goal: add some custom CSS. Our approach is to create an own Django
project and, in settings.py, to import Horizon's default settings ("from
openstack_dashboard.settings import *"). After this import we extend
2 matches
Mail list logo