diff options
-rw-r--r-- | chimere_example_static/chimere/css/extra-styles.css | 10 | ||||
-rw-r--r-- | settings.py | 2 |
2 files changed, 12 insertions, 0 deletions
diff --git a/chimere_example_static/chimere/css/extra-styles.css b/chimere_example_static/chimere/css/extra-styles.css index 16af217..a2da8a4 100644 --- a/chimere_example_static/chimere/css/extra-styles.css +++ b/chimere_example_static/chimere/css/extra-styles.css @@ -219,6 +219,12 @@ li.main_category > span.category_name:hover{ width:30px; } +@media (min-height: 500px) { + #category-directory{ + width:50%; + } +} + #search-nav{ position:absolute; bottom:0; @@ -341,6 +347,10 @@ span#permalink, .navbar-nav .lbl, #areas-div label, #permalink, #simple_button, content:"\f040"; } +.fa-chimere-categories:before{ + content:"\f03a"; +} + .fa-chimere-rss:before{ content:"\f09e"; } diff --git a/settings.py b/settings.py index 072a322..03e56c4 100644 --- a/settings.py +++ b/settings.py @@ -56,6 +56,8 @@ CHIMERE_DISPLAY_AREAS = True CHIMERE_DAYS_BEFORE_EVENT = 30 # allow feeds CHIMERE_FEEDS = True +# display a directory of items +CHIMERE_DIRECTORY = True CHIMERE_ICON_WIDTH = 21 CHIMERE_ICON_HEIGHT = 25 |