diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-03-15 15:05:42 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-03-15 15:05:42 -0300 |
commit | 20f9884f9a52e810d7e3cdbdd92eabc64812e097 (patch) | |
tree | f01dbe4db567b7bebb38274286ca2b3fc02a6d66 /views/default/ckeditor/css.php | |
download | elgg-20f9884f9a52e810d7e3cdbdd92eabc64812e097.tar.gz elgg-20f9884f9a52e810d7e3cdbdd92eabc64812e097.tar.bz2 |
Squashed 'mod/ckeditor/' content from commit 9f4ede0
git-subtree-dir: mod/ckeditor
git-subtree-split: 9f4ede06562e229a26d7ae8d32ebb23453c293e7
Diffstat (limited to 'views/default/ckeditor/css.php')
-rw-r--r-- | views/default/ckeditor/css.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/views/default/ckeditor/css.php b/views/default/ckeditor/css.php new file mode 100644 index 000000000..8c8790722 --- /dev/null +++ b/views/default/ckeditor/css.php @@ -0,0 +1,30 @@ +<?php +/** + * CKEditor CSS + * + * Overrides on the default CKEditor skin + * Gives the textarea and buttons rounded corners + * + * The rules are extra long in order to have enough + * weight to override the CKEditor rules + */ +?> + +.cke_top { + width: 100% !important; +} + +.cke_bottom .cke_wordcount { + float: left; + padding-top: 1px; + padding-left: 5px; + font-family: Arial,Helvetica,Tahoma,Verdana,Sans-Serif; + font-size: 11px; + font-weight: 700; + color: #5F5F5F; +} + +.cke_bottom .cke_path { + float: right; +} + |