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 details)

Uploaded Source

Built Distribution

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

Uploaded Python 2 Python 3

File details

Details for the file cmsplugin-css-background-0.2.0.tar.gz.

File metadata

File hashes

Hashes for cmsplugin-css-background-0.2.0.tar.gz
Algorithm Hash digest
SHA256 67436a2e52b31ffb29e3948712031a8c6a08a78f0ebffa97c586356ea48753e2
MD5 d4e3f3326336286224282d00ab5e757f
BLAKE2b-256 f33241fb7099bfc9eb98b45e05308b6017706d594192611b151c7036869f3ab7

See more details on using hashes here.

File details

Details for the file cmsplugin_css_background-0.2.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for cmsplugin_css_background-0.2.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 436fa92dfa49a30eba032f025ffacd3af1982954b0d30a3b9cacd67fcbbe855a
MD5 b7295c613abc1cef8e2842bb3789b5bc
BLAKE2b-256 129305cac18c554c807952feabfc81f6989ad4fb0912d982b53077842ed35efd

See more details on using hashes here.

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