/wagtailfacelift

WARNING: This repo isn't maintained anymore! Drop-in CSS enhancements for Wagtail's Streamfield

Primary LanguageCSSBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

!! WARNING: This repo isn't maintained anymore !!

Overriding Wagtail CSS isn't sustainable and makes upgrading to a newer version more difficult. Designers are now more closely involved with the development of Wagtail (e.g. see the Streamfield UI Changes) so we are confident that hacks like this project are no longer needed.

Wagtail Facelift

Drop-in CSS enhancements for Wagtail's Streamfield. Pure CSS overrides, there's no extra configuration.

Check out Awesome Wagtail for more awesome packages and resources from the Wagtail community.

./facelift.png

Installation

pip install git+https://github.com/springload/wagtailfacelift.git

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!