1
0
Fork 0

Added css to fix ckeditor in the admin app

This commit is contained in:
Daniele Tricoli 2012-11-24 21:05:55 +01:00
parent 594ab9a97f
commit 207fc5601b
2 changed files with 8 additions and 1 deletions

View File

@ -13,4 +13,6 @@ CKEDITOR_URL = getattr(settings, 'CKEDITOR_URL', 'ckeditor/ckeditor.js')
# In yours settings.py you should use:
# MICROCMS_CUSTOM_CSS = ('custom-css.css',) # single css file
# MICROCMS_CUSTOM_CSS = ('custom-css1.css', 'custom-css2.css') # multiple css
MICROCMS_CUSTOM_CSS = getattr(settings, 'MICROCMS_CUSTOM_CSS', ())
MICROCMS_CUSTOM_CSS = getattr(settings,
'MICROCMS_CUSTOM_CSS',
('microcms/css/kama-fix.css'))

View File

@ -0,0 +1,5 @@
div>.cke_skin_kama{
width: 100%;
padding: 0!important;
clear: both;
}