Skip to content

Blueshoe/djangocms-simple-accordion

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django CMS Accordion

A plugin for django CMS which provides you an easy way to add accordion tabs to your pages. It's minimalistic and can be easily customized via CSS.

Code analysis status

image

image

Installation

To get started using djangocms-simple-accordion:

  • install it with pip:

    $ pip install djangocms-simple-accordion
  • add the plugins to INSTALLED_APPS:

    INSTALLED_APPS = (
        ...
        'djangocms_accordion',
        ...
    )
  • run migrate djangocms_accordion.

Dependencies

  • Currently this plugin depends on bootstrap and glyphicons.

Customization

You can just override some of the CSS rules. In order to find the correct one, inspect the generated HTML in the development tools in the browser of your choice.

However, here are some commonly used customization options to get you started:

Tab-Icons

.accordion-title .accordion-toggleIcon:after {
  font-size: 13px;
  content: '\e080';
}
.accordion-title.active .accordion-toggleIcon:after {
  content: '\e114';
}

Accordion Color

.accordion {
  background-color: red;
}

Title font size

.accordion-title {
  font-size: 20px;
}

Transition Time

.u-accordion-transition {
  -webkit-transition: ease-in-out .2s;
  -moz-transition: ease-in-out .2s;
  -ms-transition: ease-in-out .2s;
  -o-transition: ease-in-out .2s;
  transition: ease-in-out .2s;
}

If you feel like you need to customize the plugin more than what is easily possible with CSS, go ahead and copy the directory djangocms_accordion into your django project.