source: trunk/library/ckeditor/contents.css @ 8246

Revision 8246, 1.7 KB checked in by angelo, 10 years ago (diff)

Ticket #3493 - Atualizar bibioteca CKEditor do Expresso

  • Property svn:executable set to *
Line 
1/*
2Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5
6body
7{
8        /* Font */
9        font-family: sans-serif, Arial, Verdana, "Trebuchet MS";
10        font-size: 12px;
11
12        /* Text color */
13        color: #333;
14
15        /* Remove the background color to make it transparent */
16        background-color: #fff;
17
18        margin: 10px;
19        word-wrap:break-word;
20}
21
22.cke_editable
23{
24        font-size: 13px;
25        /*line-height: 1.6em;*/
26}
27
28blockquote
29{
30        font-style: italic;
31        font-family: Georgia, Times, "Times New Roman", serif;
32        padding: 2px 0;
33        border-style: solid;
34        border-color: #ccc;
35        border-width: 0;
36}
37
38.cke_contents_ltr blockquote
39{
40        padding-left: 20px;
41        padding-right: 8px;
42        border-left-width: 5px;
43}
44
45.cke_contents_rtl blockquote
46{
47        padding-left: 8px;
48        padding-right: 20px;
49        border-right-width: 5px;
50}
51
52a
53{
54        color: #0782C1;
55}
56
57ol,ul,dl
58{
59        /* IE7: reset rtl list margin. (#7334) */
60        *margin-right: 0px;
61        /* preserved spaces for list items with text direction other than the list. (#6249,#8049)*/
62        padding: 0 40px;
63}
64
65h1,h2,h3,h4,h5,h6
66{
67        font-weight: normal;
68        line-height: 1.2em;
69}
70
71hr
72{
73        border: 0px;
74        border-top: 1px solid #ccc;
75}
76
77img.right
78{
79        border: 1px solid #ccc;
80        float: right;
81        margin-left: 15px;
82        padding: 5px;
83}
84
85img.left
86{
87        border: 1px solid #ccc;
88        float: left;
89        margin-right: 15px;
90        padding: 5px;
91}
92
93/* #10868: We use :not() selector to exclude IE8, which crashes on img:hover style. */
94:not(.ie8) img:hover
95{
96        opacity: .9;
97        filter: alpha(opacity = 90);
98}
99
100pre
101{
102        white-space: pre-wrap; /* CSS 2.1 */
103        word-wrap: break-word; /* IE7 */
104}
105
106.marker
107{
108        background-color: Yellow;
109}
Note: See TracBrowser for help on using the repository browser.