blob: 8c8790722f24ca06436591df5497cd6a35ff8ed8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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;
}
|