- 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:
Fabio Manganiello 2019-06-14 00:54:20 +02:00
parent 076d766745
commit 9d4511577f
48 changed files with 833 additions and 178 deletions

View file

@ -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'