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

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

Update CK Editor to 3.4.2.

File size: 839 bytes
Line 
1/*
2Copyright (c) 2003-2010, 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
19html
20{
21        /* #3658: [IE6] Editor document has horizontal scrollbar on long lines
22        To prevent this misbehavior, we show the scrollbar always */
23        _overflow-y: scroll;
24        /* #6341: The text cursor must be set on the editor area. */
25        cursor: text;
26        /* #6632: Avoid having "text" shape of cursor in IE7 scrollbars.*/
27        *cursor:auto;
28}
29
30img:-moz-broken
31{
32        -moz-force-broken-image-icon : 1;
33        width : 24px;
34        height : 24px;
35}
36img, input, textarea
37{
38        cursor: default;
39}
Note: See TracBrowser for help on using the repository browser.