Metadata-Version: 1.1
Name: wagtailfacelift
Version: 0.1.0
Summary: Facelift for Wagtail streamfields.
Home-page: https://github.com/springload/wagtailfacelift
Author: Josh Barr
Author-email: josh@springload.co.nz
License: BSD License
Description: Wagtail Facelift
        ================
        
        Provides some visual enhancements to Streamfield components.
        
        Pure CSS overrides, there's no extra configuration.
        
        Installation.
        -------------
        
        ::
            pip install wagtailfacelift
        
        
        Add the application to your installed apps:
        
        ::
            INSTALLED_APPS = [
                'wagtail',
                'wagtailfacelift'
            ]
        
        
        ---
        
        Extra theming
        -------------
        
        `.multi-field-dark`
        
        Apply this class to your widget for a subtle background shift, eg:
        
        ::
            MultiFieldPanel([
                StreamFieldPanel('heroes'),
                ],
                heading="Homepage Heroes",
                classname="collapsible collapsed multi-field-dark"
            )
        
        
        Enjoy!
        
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
