Skip to main content

A django CMS plugin for managing CSS background styles

Project description

django CMS plugin for configuring background images in edit mode via CSS rules.

Requirements

  • Django 1.8+

  • django CMS 3.3+

Installation

In your Python environment run

$ pip install cmsplugin-css-background

This will install the latest stable version of the plugin package. To install the package’s latest repository snapshot run

$ pip install -e git+https://github.com/alexmalykh/cmsplugin-css-background.git@master#egg=cmsplugin-css-background

Then add the plugin to INSTALLED_APPS list:

INSTALLED_APPS = [
    ...,
    'cmsplugin_css_background',
]

and finally, roll database migrations:

$ python manage.py migrate cmsplugin_css_background

Usage

  1. Define a placeholder in your template like this:

    {% with css_selector='#some-element' %}
        {% placeholder 'Placeholder Name' %}
    {% endwith %}

    The placeholder can be anywhere but it is recommended to keep it near the element specified by the CSS selector. Note that the selector can be any valid CSS selector, not just an id.

  2. Add an instance of CSS Background from the Generic plugin group to the created placeholder on your page in the CMS admin.

  3. Configure the required background CSS styling that will be applied to the element. All fields may be left blank if not required, but at least color or image must be provided. Omitted properties cascade down to corresponding lower-priority styling.

The CSS style definition is added to the sekizai css block in the <head/> element, in compliance with W3 specs:

<style type="text/css">
#some-element {
    /* here 'background-' CSS rules go */
    ...
}
</style>

The template used is cmsplugin_css_background/css-background.html.

By default, background properties are rendered as a list of separate rules (which are omitted if not specified), but there is a shorthand option too. To use it just override cmsplugin_css_background/css-background.html template somewhere in your project tree and replace

{{ instance.as_separate_rules }}

with

{{ instance.as_single_rule }}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cmsplugin-css-background-0.2.0.tar.gz (9.3 kB view hashes)

Uploaded Source

Built Distribution

cmsplugin_css_background-0.2.0-py2.py3-none-any.whl (11.2 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page