source: extensions/FCKEditor/ckeditor/contents.css @ 9293

Last change on this file since 9293 was 9293, checked in by patdenice, 13 years ago

Update to CK Editor 3.5.2

File size: 940 bytes
Line 
1/*
2Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.html or http://ckeditor.com/license
4*/
5
6body
7{
8        /* Font */
9        font-family: Arial, Verdana, sans-serif;
10        font-size: 12px;
11
12        /* Text color */
13        color: #222;
14
15        /* Remove the background color to make it transparent */
16        background-color: #fff;
17}
18
19/* preserved spaces for rtl list item bullets. (#6249)*/
20ol,ul,dl
21{
22    padding-right:40px;
23}
24
25html
26{
27        /* #3658: [IE6] Editor document has horizontal scrollbar on long lines
28        To prevent this misbehavior, we show the scrollbar always */
29        _overflow-y: scroll;
30        /* #6341: The text cursor must be set on the editor area. */
31        cursor: text;
32        /* #6632: Avoid having "text" shape of cursor in IE7 scrollbars.*/
33        *cursor:auto;
34}
35
36img:-moz-broken
37{
38        -moz-force-broken-image-icon : 1;
39        width : 24px;
40        height : 24px;
41}
42img, input, textarea
43{
44        cursor: default;
45}
Note: See TracBrowser for help on using the repository browser.