Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
/*
2
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
3
For licensing, see LICENSE.md or http://ckeditor.com/license
4
*/
5
 
6
/*
7
editor_iequirks.css
8
===============
9
 
10
This file contains styles to used by all versions of Internet Explorer
11
in Quirks mode only.
12
*/
13
 
14
/* Base it on editor_ie.css, overriding it with styles defined in this file. */
15
@import "../../components/editor";
16
 
17
.cke_top,
18
.cke_contents,
19
.cke_bottom
20
{
21
    width: 100%; /* hasLayout = true */
22
}
23
 
24
.cke_button_arrow
25
{
26
    font-size: 0; /* Set minimal font size, so arrow won't be streched by the text that doesn't exist. */
27
}
28
 
29
/* Bring back toolbar buttons in RTL. */
30
 
31
.cke_rtl .cke_toolgroup,
32
.cke_rtl .cke_toolbar_separator,
33
.cke_rtl .cke_button,
34
.cke_rtl .cke_button *,
35
.cke_rtl .cke_combo,
36
.cke_rtl .cke_combo *,
37
.cke_rtl .cke_path_item,
38
.cke_rtl .cke_path_item *,
39
.cke_rtl .cke_path_empty
40
{
41
    float: none;
42
}
43
 
44
.cke_rtl .cke_toolgroup,
45
.cke_rtl .cke_toolbar_separator,
46
.cke_rtl .cke_combo_button,
47
.cke_rtl .cke_combo_button *,
48
.cke_rtl .cke_button,
49
.cke_rtl .cke_button_icon,
50
{
51
    display: inline-block;
52
    vertical-align: top;
53
}
54
 
55
/* Otherwise formatting toolbar breaks when editing a mixed content (#9893). */
56
.cke_rtl .cke_button_icon
57
{
58
    float: none;
59
}
60
 
61
.cke_resizer
62
{
63
    width: 10px;
64
}
65
 
66
.cke_source
67
{
68
    white-space: normal;
69
}
70
 
71
.cke_bottom
72
{
73
    position: static; /* Without this bottom space doesn't move when resizing editor. */
74
}
75
 
76
.cke_colorbox
77
{
78
    font-size: 0; /* Set minimal font size, so button won't be streched by the text that doesn't exist. */
79
}