Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/springload/wagtailfacelift
WARNING: This repo isn't maintained anymore! Drop-in CSS enhancements for Wagtail's Streamfield
https://github.com/springload/wagtailfacelift
streamfield wagtail
Last synced: about 2 months ago
JSON representation
WARNING: This repo isn't maintained anymore! Drop-in CSS enhancements for Wagtail's Streamfield
- Host: GitHub
- URL: https://github.com/springload/wagtailfacelift
- Owner: springload
- License: bsd-3-clause
- Created: 2016-06-16T10:12:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-27T23:04:48.000Z (almost 7 years ago)
- Last Synced: 2024-11-13T16:17:44.980Z (2 months ago)
- Topics: streamfield, wagtail
- Language: CSS
- Homepage:
- Size: 131 KB
- Stars: 11
- Watchers: 20
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
**!! 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... image:: ./facelift.png
:target: https://pypi.python.org/pypi/wagtailfaceliftInstallation
------------.. code:: sh
pip install git+https://github.com/springload/wagtailfacelift.git
Add the application to your installed apps:
.. code:: python
INSTALLED_APPS = [
'wagtail',
'wagtailfacelift'
]---
Extra theming
-------------`.multi-field-dark`
Apply this class to your widget for a subtle background shift, eg:
.. code:: python
MultiFieldPanel([
StreamFieldPanel('heroes'),
],
heading="Homepage Heroes",
classname="collapsible collapsed multi-field-dark"
)Enjoy!