forked from platypush/platypush
- Refactored webpanel style to use flex and dynamic element heights
instead of ugly fixed/absolute positioning. - New media webpanel plugin WIP
This commit is contained in:
parent
076d766745
commit
9d4511577f
48 changed files with 833 additions and 178 deletions
2
setup.py
2
setup.py
|
@ -25,7 +25,7 @@ class WebBuildCommand(distutils.cmd.Command):
|
|||
input_path = path(os.path.join(base_path,'source'))
|
||||
output_path = path(os.path.join(base_path,'dist'))
|
||||
|
||||
for root, dirs, files in os.walk(input_path):
|
||||
for root, dirs, files in os.walk(input_path, followlinks=True):
|
||||
scss_file = os.path.join(root, 'index.scss')
|
||||
if os.path.isfile(scss_file):
|
||||
css_path = os.path.split(scss_file[len(input_path):])[0][1:] + '.css'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue