source: trunk/phpgwapi/js/ckeditor/_samples/sample.css @ 2862

Revision 2862, 1.1 KB checked in by rodsouza, 14 years ago (diff)

Ticket #663 - Atualizando e centralizando o CKEditor (v. 3.2.1)

Line 
1/*
2Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.html or http://ckeditor.com/license
4*/
5
6fieldset
7{
8        margin: 0;
9        padding: 10px;
10}
11
12form
13{
14        margin: 0;
15        padding: 0;
16}
17
18pre
19{
20        background-color: #F7F7F7;
21        border: 1px solid #D7D7D7;
22        overflow: auto;
23        margin: 0;
24        padding: 0.25em;
25}
26
27#alerts
28{
29        color: Red;
30}
31
32#footer hr
33{
34        margin: 10px 0 15px 0;
35        height: 1px;
36        border: solid 1px gray;
37        border-bottom: none;
38}
39
40#footer p
41{
42        margin: 0 10px 10px 10px;
43        float: left;
44}
45
46#footer #copy
47{
48        float: right;
49}
50
51#outputSample
52{
53        width: 100%;
54        table-layout: fixed;
55}
56
57#outputSample thead th
58{
59        color: #dddddd;
60        background-color: #999999;
61        padding: 4px;
62        white-space: nowrap;
63}
64
65#outputSample tbody th
66{
67        vertical-align: top;
68        text-align: left;
69}
70
71#outputSample pre
72{
73        margin: 0;
74        padding: 0;
75        white-space: pre; /* CSS2 */
76        white-space: -moz-pre-wrap; /* Mozilla*/
77        white-space: -o-pre-wrap; /* Opera 7 */
78        white-space: pre-wrap; /* CSS 2.1 */
79        white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
80        word-wrap: break-word; /* IE */
81}
Note: See TracBrowser for help on using the repository browser.