Project

General

Profile

1
/*
2
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
 * Copyright (C) 2003-2010 Frederico Caldeira Knabben
4
 *
5
 * == BEGIN LICENSE ==
6
 *
7
 * Licensed under the terms of any of the following licenses at your
8
 * choice:
9
 *
10
 *  - GNU General Public License Version 2 or later (the "GPL")
11
 *    http://www.gnu.org/licenses/gpl.html
12
 *
13
 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
14
 *    http://www.gnu.org/licenses/lgpl.html
15
 *
16
 *  - Mozilla Public License Version 1.1 or later (the "MPL")
17
 *    http://www.mozilla.org/MPL/MPL-1.1.html
18
 *
19
 * == END LICENSE ==
20
 *
21
 * Styles used by the editor IFRAME and Toolbar.
22
 */
23

    
24
/*
25
	### Basic Editor IFRAME Styles.
26
*/
27

    
28
body
29
{
30
	padding: 1px;
31
	margin: 0;
32
	background-color: #ffffff;
33
}
34

    
35
#xEditingArea
36
{
37
    border: #696969 1px solid;
38
}
39

    
40
.SourceField
41
{
42
    padding: 5px;
43
    margin: 0px;
44
    font-family: Monospace;
45
}
46

    
47
/*
48
	Toolbar
49
*/
50

    
51
.TB_ToolbarSet, .TB_Expand, .TB_Collapse
52
{
53
    cursor: default;
54
    background-color: #f7f8fd;
55
}
56

    
57
.TB_ToolbarSet
58
{
59
    border-top: #f7f8fd 1px outset;
60
    border-bottom: #f7f8fd 1px outset;
61
}
62

    
63
.TB_ToolbarSet TD
64
{
65
    font-size: 11px;
66
    font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif;
67
}
68

    
69
.TB_Toolbar
70
{
71
   	background-color: #d6dff7;
72
	background-image: url(images/toolbar.bg.gif);
73
	background-repeat: repeat-x;
74
    display: inline-table;
75
}
76

    
77
.TB_Separator
78
{
79
    width: 1px;
80
    height: 16px;
81
    margin: 2px;
82
    background-color: #B2CBFF;
83
}
84

    
85
.TB_Start
86
{
87
    background-image: url(images/toolbar.start.gif);
88
    background-repeat: no-repeat;
89
    background-position: center center;
90
    margin: 0px;
91
    width: 7px;
92
    height: 24px;
93
}
94

    
95
.TB_End
96
{
97
    background-image: url(images/toolbar.end.gif);
98
    background-repeat: no-repeat;
99
    background-position: center left;
100
    height: 24px;
101
    width: 4px;
102
}
103

    
104
.TB_ExpandImg
105
{
106
    background-image: url(images/toolbar.expand.gif);
107
    background-repeat: no-repeat;
108
}
109

    
110
.TB_CollapseImg
111
{
112
    background-image: url(images/toolbar.collapse.gif);
113
    background-repeat: no-repeat;
114
}
115

    
116
.TB_SideBorder
117
{
118
    background-color: #696969;
119
}
120

    
121
.TB_Expand, .TB_Collapse
122
{
123
    padding: 2px 2px 2px 2px;
124
    border: #f7f8fd 1px outset;
125
}
126

    
127
.TB_Collapse
128
{
129
    width: 5px;
130
}
131

    
132
.TB_Break
133
{
134
    height: 24px; /* IE needs the height to be set, otherwise no break */
135
}
136

    
137
/*
138
	Toolbar Button
139
*/
140

    
141
.TB_Button_On, .TB_Button_Off, .TB_Button_On_Over, .TB_Button_Off_Over, .TB_Button_Disabled
142
{
143
    /*margin: 1px;*/
144
    border: #efefde 1px solid; /* This is the default border */
145
    height: 22px; /* The height is necessary, otherwise IE will not apply the alpha */
146
}
147

    
148
.TB_Button_On
149
{
150
    margin: 0px;
151
    border: #316ac5 1px solid;
152
    background-color: #c1d2ee;
153
}
154

    
155
.TB_Button_On_Over, .TB_Button_Off_Over
156
{
157
    margin: 0px ;
158
    border: #316ac5 1px solid;
159
    background-color: #dff1ff;
160
}
161

    
162
.TB_Button_Off
163
{
164
    filter: alpha(opacity=70); /* IE */
165
    opacity: 0.70; /* Safari, Opera and Mozilla */
166
}
167

    
168
.TB_Button_Disabled
169
{
170
    filter: gray() alpha(opacity=30); /* IE */
171
    opacity: 0.30; /* Safari, Opera and Mozilla */
172
}
173

    
174
.TB_Button_Padding
175
{
176
    visibility: hidden;
177
    width: 3px;
178
    height: 22px;
179
}
180

    
181
.TB_Button_Image
182
{
183
    overflow: hidden;
184
    width: 16px;
185
    height: 16px;
186
    margin: 3px;
187
    background-repeat: no-repeat;
188
}
189

    
190
.TB_Button_Image img
191
{
192
    position: relative;
193
}
194

    
195
.TB_Button_Off .TB_Button_Text
196
{
197
   	background-color: #d6dff7;  /* Needed because of a bug on ClearType */
198
	background-image: url(images/toolbar.bg.gif);
199
	background-repeat: repeat-x;
200
}
201

    
202
.TB_ConnectionLine
203
{
204
    background-color: #f7f8fd;
205
    height: 1px;
206
    margin-left: 1px;   /* ltr */
207
    margin-right: 1px;  /* rtl */
208
}
209

    
210
.TB_Button_Off .TB_Text
211
{
212
   	background-color: #d6dff7;  /* Needed because of a bug on ClearType */
213
	background-image: url(images/toolbar.bg.gif);
214
	background-repeat: repeat-x;
215
}
216

    
217
.TB_Button_On_Over .TB_Text
218
{
219
   	background-color: #dff1ff ;  /* Needed because of a bug on ClearType */
220
}
221

    
222
/*
223
	Menu
224
*/
225

    
226
.MN_Menu
227
{
228
    border: 1px solid #8f8f73;
229
    padding: 2px;
230
    background-color: #f7f8fd;
231
    cursor: default;
232
}
233

    
234
.MN_Menu, .MN_Menu .MN_Label
235
{
236
    font-size: 11px;
237
    font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif;
238
}
239

    
240
.MN_Item_Padding
241
{
242
    visibility: hidden;
243
    width: 3px;
244
    height: 20px;
245
}
246

    
247
.MN_Icon
248
{
249
    background-color: #d6dff7;
250
    text-align: center;
251
    height: 20px;
252
}
253

    
254
.MN_Label
255
{
256
    padding-left: 3px;
257
    padding-right: 3px;
258
}
259

    
260
.MN_Separator
261
{
262
    height: 3px;
263
}
264

    
265
.MN_Separator_Line
266
{
267
    border-top: #b9b99d 1px solid;
268
}
269

    
270
.MN_Item .MN_Icon IMG
271
{
272
    filter: alpha(opacity=70);
273
    opacity: 0.70;
274
}
275

    
276
.MN_Item_Over
277
{
278
    color: #ffffff;
279
    background-color: #7096FA;
280
}
281

    
282
.MN_Item_Over .MN_Icon
283
{
284
    background-color: #466ca6;
285
}
286

    
287
.MN_Item_Disabled IMG
288
{
289
    filter: gray() alpha(opacity=30); /* IE */
290
    opacity: 0.30; /* Safari, Opera and Mozilla */
291
}
292

    
293
.MN_Item_Disabled .MN_Label
294
{
295
    color: #b7b7b7;
296
}
297

    
298
.MN_Arrow
299
{
300
    padding-right: 3px;
301
    padding-left: 3px;
302
}
303

    
304
.MN_ConnectionLine
305
{
306
    background-color: #f7f8fd;
307
}
308

    
309
.Menu .TB_Button_On, .Menu .TB_Button_On_Over
310
{
311
    border: #8f8f73 1px solid;
312
    background-color: #f7f8fd;
313
}
314

    
315
/*
316
	### Panel Styles
317
*/
318

    
319
.FCK_Panel
320
{
321
    border: #8f8f73 1px solid;
322
    padding: 2px;
323
    background-color: #f7f8fd;
324
}
325

    
326
.FCK_Panel, .FCK_Panel TD
327
{
328
    font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif;
329
    font-size: 11px;
330
}
331

    
332
/*
333
	### Special Combos
334
*/
335

    
336
.SC_Panel
337
{
338
    overflow: auto;
339
    white-space: nowrap;
340
    cursor: default;
341
    border: 1px solid #8f8f73;
342
    padding-left: 2px;
343
    padding-right: 2px;
344
}
345

    
346
.SC_Panel, .SC_Panel TD
347
{
348
    font-size: 11px;
349
    font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif;
350
}
351

    
352
.SC_Item, .SC_ItemSelected
353
{
354
    margin-top: 2px;
355
    margin-bottom: 2px;
356
    background-position: left center;
357
    padding-left: 11px;
358
    padding-right: 3px;
359
    padding-top: 2px;
360
    padding-bottom: 2px;
361
    text-overflow: ellipsis;
362
    overflow: hidden;
363
    background-repeat: no-repeat;
364
    border: #dddddd 1px solid;
365
}
366

    
367
.SC_Item *, .SC_ItemSelected *
368
{
369
    margin-top: 0px;
370
    margin-bottom: 0px;
371
}
372

    
373
.SC_ItemSelected
374
{
375
    border: #9a9afb 1px solid;
376
    background-image: url(images/toolbar.arrowright.gif);
377
}
378

    
379
.SC_ItemOver
380
{
381
    border: #316ac5 1px solid;
382
}
383

    
384
.SC_Field
385
{
386
    margin-top: 2px ;
387
    border: #b7b7a6 1px solid;
388
    cursor: default;
389
}
390

    
391
.SC_FieldCaption
392
{
393
    overflow: visible;
394
    padding-right: 5px;
395
    padding-left: 5px;
396
    opacity: 0.75; /* Safari, Opera and Mozilla */
397
    filter: alpha(opacity=70); /* IE */ /* -moz-opacity: 0.75; Mozilla (Old) */
398
    height: 23px;
399
   	background-color: #d6dff7;  /* Needed because of a bug on ClearType */
400
	background-image: url(images/toolbar.bg.gif);
401
	background-repeat: repeat-x;
402
/*    background-color:  inherit;     Maybe this is needed wait to check */
403
}
404

    
405
.SC_FieldLabel
406
{
407
    white-space: nowrap;
408
    padding: 2px;
409
    width: 100%;
410
    cursor: default;
411
    background-color: #ffffff;
412
    text-overflow: ellipsis;
413
    overflow: hidden;
414
}
415

    
416
.SC_FieldButton
417
{
418
    background-position: center center;
419
    background-image: url(images/toolbar.buttonarrow.gif);
420
    border-left: #b7b7a6 1px solid;
421
    width: 14px;
422
    background-repeat: no-repeat;
423
}
424

    
425
.SC_FieldDisabled .SC_FieldButton, .SC_FieldDisabled .SC_FieldCaption, .SC_FieldDisabled .TB_ButtonType_Text
426
{
427
    opacity: 0.30; /* Safari, Opera and Mozilla */
428
    filter: gray() alpha(opacity=30); /* IE */ /* -moz-opacity: 0.30; Mozilla (Old) */
429
}
430

    
431
.SC_FieldOver
432
{
433
    border: #316ac5 1px solid;
434
}
435

    
436
.SC_FieldOver .SC_FieldButton
437
{
438
    border-left: #316ac5 1px solid;
439
}
440

    
441
/*
442
	### Color Selector Panel
443
*/
444

    
445
.ColorBoxBorder
446
{
447
    border: #808080 1px solid;
448
    position: static;
449
}
450

    
451
.ColorBox
452
{
453
    font-size: 1px;
454
    width: 10px;
455
    position: static;
456
    height: 10px;
457
}
458

    
459
.ColorDeselected, .ColorSelected
460
{
461
    cursor: default;
462
}
463

    
464
.ColorDeselected
465
{
466
    border: #ffffff 1px solid;
467
    padding: 2px;
468
    float: left;
469
}
470

    
471
.ColorSelected
472
{
473
    border: #330066 1px solid;
474
    padding: 2px;
475
    float: left;
476
    background-color: #c4cdd6;
477
}
(3-3/5)