aboutsummaryrefslogtreecommitdiff
path: root/sources/skins/moono/editor_ie7.css
blob: e2c3c6c41c39963467e9448021595f24ca4b3696 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/*
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/

/*
editor_ie7.css
===============

This file contains styles to used by Internet Explorer 7 only.
*/

/* Base it on editor_ie.css, overriding it with styles defined in this file. */
@import url("editor_ie.css");

.cke_rtl .cke_toolgroup,
.cke_rtl .cke_toolbar_separator,
.cke_rtl .cke_button,
.cke_rtl .cke_button *,
.cke_rtl .cke_combo,
.cke_rtl .cke_combo *,
.cke_rtl .cke_path_item,
.cke_rtl .cke_path_item *,
.cke_rtl .cke_path_empty
{
	float: none;
}

.cke_rtl .cke_toolgroup,
.cke_rtl .cke_toolbar_separator,
.cke_rtl .cke_combo_button,
.cke_rtl .cke_combo_button *,
.cke_rtl .cke_button,
.cke_rtl .cke_button_icon
{
	display: inline-block;
	vertical-align: top;
}

.cke_toolbox
{
	display:inline-block;
	padding-bottom: 5px;
	height: 100%;
}
.cke_rtl .cke_toolbox
{
	padding-bottom: 0;
}

.cke_toolbar
{
	margin-bottom: 5px;
}
.cke_rtl .cke_toolbar
{
	margin-bottom: 0;
}

/* IE7: toolgroup must be adapted to toolbar items height. */
.cke_toolgroup
{
	height: 26px;
}

/* Avoid breaking elements that use background gradient when page zoom > 1 (#9548) */
.cke_toolgroup,
.cke_combo
{
	position: relative;
}

a.cke_button
{
	/* IE7: buttons must not float to wrap the toolbar in a whole. */
	float:none;

	/* IE7: buttons have to be aligned to top. Otherwise, some buttons like
	 * source and scayt are displayed a few pixels below the base line.
	 */
	vertical-align:top;
}

.cke_toolbar_separator
{
	display: inline-block;
	float: none;
	vertical-align: top;
	background-color: #c0c0c0;
}

.cke_toolbox_collapser .cke_arrow
{
	margin-top: 0;
}
.cke_toolbox_collapser .cke_arrow
{
	border-width:4px;
}
.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow
{
	border-width:3px;
}

.cke_rtl .cke_button_arrow
{
	padding-top: 8px;
	margin-right: 2px;
}

.cke_rtl .cke_combo_inlinelabel
{
	display: table-cell;
	vertical-align: middle;
}

/*
 * Editor menus are display:table-driven. IE7 doesn't support this approach,
 * hence this position&float hybrid fall-back.
 */
.cke_menubutton
{
	display: block;
	height: 24px;
}

.cke_menubutton_inner
{
	display: block;
	position: relative;
}

.cke_menubutton_icon
{
	height: 16px;
	width: 16px;
}

.cke_menubutton_icon,
.cke_menubutton_label,
.cke_menuarrow
{
	display: inline-block;
}

.cke_menubutton_label
{
	width: auto;
	vertical-align: top;
	line-height: 24px;
	height: 24px;
	margin: 0 10px 0 0;
}

.cke_menuarrow
{
	width: 5px;
	height: 6px;
	padding: 0;
	position: absolute;
	right: 8px;
	top: 10px;

	background-position: 0 0;
}

/* Menus in RTL mode. */
.cke_rtl .cke_menubutton_icon
{
	position: absolute;
	right: 0px;
	top: 0px;
}

.cke_rtl .cke_menubutton_label
{
	float: right;
	clear: both;
	margin: 0 24px 0 10px;
}

.cke_hc .cke_rtl .cke_menubutton_label
{
	margin-right: 0;
}


.cke_rtl .cke_menuarrow
{
	left: 8px;
	right: auto;
	background-position: 0 -24px;
}

.cke_hc .cke_menuarrow
{
	top: 5px;
	padding: 0 5px;
}

.cke_rtl input.cke_dialog_ui_input_text,
.cke_rtl input.cke_dialog_ui_input_password
{
	/* Positioning is required for IE7 on text inputs not to stretch dialog horizontally. (#8971)*/
	position: relative;
}

/* Reset vertical paddings which put editing area under bottom UI space. (#9721) */
.cke_wysiwyg_div
{
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}