Line | |
---|
1 | /* |
---|
2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. |
---|
3 | For licensing, see LICENSE.html or http://ckeditor.com/license |
---|
4 | */ |
---|
5 | |
---|
6 | body |
---|
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)*/ |
---|
20 | ol,ul,dl |
---|
21 | { |
---|
22 | padding-right:40px; |
---|
23 | } |
---|
24 | |
---|
25 | html |
---|
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 | |
---|
36 | img:-moz-broken |
---|
37 | { |
---|
38 | -moz-force-broken-image-icon : 1; |
---|
39 | width : 24px; |
---|
40 | height : 24px; |
---|
41 | } |
---|
42 | img, input, textarea |
---|
43 | { |
---|
44 | cursor: default; |
---|
45 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.