rails_kindeditor 0.2.2 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (22) hide show
  1. data/lib/generators/rails_kindeditor/install/templates/kindeditor/kindeditor-min.js +165 -161
  2. data/lib/generators/rails_kindeditor/install/templates/kindeditor/lang/en.js +210 -210
  3. data/lib/generators/rails_kindeditor/install/templates/kindeditor/lang/zh_CN.js +214 -214
  4. data/lib/generators/rails_kindeditor/install/templates/kindeditor/lang/zh_TW.js +212 -212
  5. data/lib/generators/rails_kindeditor/install/templates/kindeditor/plugins/anchor/anchor.js +46 -46
  6. data/lib/generators/rails_kindeditor/install/templates/kindeditor/plugins/clearhtml/clearhtml.js +29 -29
  7. data/lib/generators/rails_kindeditor/install/templates/kindeditor/plugins/filemanager/filemanager.js +189 -185
  8. data/lib/generators/rails_kindeditor/install/templates/kindeditor/plugins/flash/flash.js +145 -145
  9. data/lib/generators/rails_kindeditor/install/templates/kindeditor/plugins/image/image.js +259 -242
  10. data/lib/generators/rails_kindeditor/install/templates/kindeditor/plugins/insertfile/insertfile.js +109 -109
  11. data/lib/generators/rails_kindeditor/install/templates/kindeditor/plugins/link/link.js +65 -65
  12. data/lib/generators/rails_kindeditor/install/templates/kindeditor/plugins/map/map.js +137 -137
  13. data/lib/generators/rails_kindeditor/install/templates/kindeditor/plugins/media/media.js +153 -153
  14. data/lib/generators/rails_kindeditor/install/templates/kindeditor/plugins/pagebreak/pagebreak.js +26 -26
  15. data/lib/generators/rails_kindeditor/install/templates/kindeditor/plugins/table/table.js +715 -715
  16. data/lib/generators/rails_kindeditor/install/templates/kindeditor/plugins/wordpaste/wordpaste.js +51 -51
  17. data/lib/generators/rails_kindeditor/install/templates/kindeditor/themes/common/loading.gif +0 -0
  18. data/lib/generators/rails_kindeditor/install/templates/kindeditor/themes/default/default.css +991 -980
  19. data/lib/generators/rails_kindeditor/install/templates/kindeditor/themes/default/default.png +0 -0
  20. data/lib/rails_kindeditor/version.rb +1 -1
  21. metadata +29 -51
  22. data/lib/generators/rails_kindeditor/install/templates/kindeditor/themes/default/default.gif +0 -0
@@ -1,51 +1,51 @@
1
- /*******************************************************************************
2
- * KindEditor - WYSIWYG HTML Editor for Internet
3
- * Copyright (C) 2006-2011 kindsoft.net
4
- *
5
- * @author Roddy <luolonghao@gmail.com>
6
- * @site http://www.kindsoft.net/
7
- * @licence http://www.kindsoft.net/license.php
8
- *******************************************************************************/
9
-
10
- KindEditor.plugin('wordpaste', function(K) {
11
- var self = this, name = 'wordpaste';
12
- self.clickToolbar(name, function() {
13
- var lang = self.lang(name + '.'),
14
- html = '<div style="padding:10px 20px;">' +
15
- '<div style="margin-bottom:10px;">' + lang.comment + '</div>' +
16
- '<iframe class="ke-textarea" frameborder="0" style="width:408px;height:260px;"></iframe>' +
17
- '</div>',
18
- dialog = self.createDialog({
19
- name : name,
20
- width : 450,
21
- title : self.lang(name),
22
- body : html,
23
- yesBtn : {
24
- name : self.lang('yes'),
25
- click : function(e) {
26
- var str = doc.body.innerHTML;
27
- str = K.clearMsWord(str, self.filterMode ? self.htmlTags : K.options.htmlTags);
28
- self.insertHtml(str).hideDialog().focus();
29
- }
30
- }
31
- }),
32
- div = dialog.div,
33
- iframe = K('iframe', div),
34
- doc = K.iframeDoc(iframe);
35
- if (!K.IE) {
36
- doc.designMode = 'on';
37
- }
38
- doc.open();
39
- doc.write('<!doctype html><html><head><title>WordPaste</title></head>');
40
- doc.write('<body style="background-color:#FFF;font-size:12px;margin:2px;">');
41
- if (!K.IE) {
42
- doc.write('<br />');
43
- }
44
- doc.write('</body></html>');
45
- doc.close();
46
- if (K.IE) {
47
- doc.body.contentEditable = 'true';
48
- }
49
- iframe[0].contentWindow.focus();
50
- });
51
- });
1
+ /*******************************************************************************
2
+ * KindEditor - WYSIWYG HTML Editor for Internet
3
+ * Copyright (C) 2006-2011 kindsoft.net
4
+ *
5
+ * @author Roddy <luolonghao@gmail.com>
6
+ * @site http://www.kindsoft.net/
7
+ * @licence http://www.kindsoft.net/license.php
8
+ *******************************************************************************/
9
+
10
+ KindEditor.plugin('wordpaste', function(K) {
11
+ var self = this, name = 'wordpaste';
12
+ self.clickToolbar(name, function() {
13
+ var lang = self.lang(name + '.'),
14
+ html = '<div style="padding:10px 20px;">' +
15
+ '<div style="margin-bottom:10px;">' + lang.comment + '</div>' +
16
+ '<iframe class="ke-textarea" frameborder="0" style="width:408px;height:260px;"></iframe>' +
17
+ '</div>',
18
+ dialog = self.createDialog({
19
+ name : name,
20
+ width : 450,
21
+ title : self.lang(name),
22
+ body : html,
23
+ yesBtn : {
24
+ name : self.lang('yes'),
25
+ click : function(e) {
26
+ var str = doc.body.innerHTML;
27
+ str = K.clearMsWord(str, self.filterMode ? self.htmlTags : K.options.htmlTags);
28
+ self.insertHtml(str).hideDialog().focus();
29
+ }
30
+ }
31
+ }),
32
+ div = dialog.div,
33
+ iframe = K('iframe', div),
34
+ doc = K.iframeDoc(iframe);
35
+ if (!K.IE) {
36
+ doc.designMode = 'on';
37
+ }
38
+ doc.open();
39
+ doc.write('<!doctype html><html><head><title>WordPaste</title></head>');
40
+ doc.write('<body style="background-color:#FFF;font-size:12px;margin:2px;">');
41
+ if (!K.IE) {
42
+ doc.write('<br />');
43
+ }
44
+ doc.write('</body></html>');
45
+ doc.close();
46
+ if (K.IE) {
47
+ doc.body.contentEditable = 'true';
48
+ }
49
+ iframe[0].contentWindow.focus();
50
+ });
51
+ });
@@ -1,981 +1,992 @@
1
- /* common */
2
- .ke-inline-block {
3
- display: -moz-inline-stack;
4
- display: inline-block;
5
- vertical-align: middle;
6
- zoom: 1;
7
- *display: inline;
8
- }
9
- .ke-clearfix {
10
- zoom: 1;
11
- }
12
- .ke-clearfix:after {
13
- content: ".";
14
- display: block;
15
- clear: both;
16
- font-size: 0;
17
- height: 0;
18
- line-height: 0;
19
- visibility: hidden;
20
- }
21
- .ke-menu a,
22
- .ke-menu a:hover,
23
- .ke-dialog a,
24
- .ke-dialog a:hover {
25
- color: #337FE5;
26
- text-decoration: none;
27
- }
28
- /* icons */
29
- .ke-icon-source {
30
- background-position: 0px 0px;
31
- width: 16px;
32
- height: 16px;
33
- }
34
- .ke-icon-preview {
35
- background-position: 0px -16px;
36
- width: 16px;
37
- height: 16px;
38
- }
39
- .ke-icon-print {
40
- background-position: 0px -32px;
41
- width: 16px;
42
- height: 16px;
43
- }
44
- .ke-icon-undo {
45
- background-position: 0px -48px;
46
- width: 16px;
47
- height: 16px;
48
- }
49
- .ke-icon-redo {
50
- background-position: 0px -64px;
51
- width: 16px;
52
- height: 16px;
53
- }
54
- .ke-icon-cut {
55
- background-position: 0px -80px;
56
- width: 16px;
57
- height: 16px;
58
- }
59
- .ke-icon-copy {
60
- background-position: 0px -96px;
61
- width: 16px;
62
- height: 16px;
63
- }
64
- .ke-icon-paste {
65
- background-position: 0px -112px;
66
- width: 16px;
67
- height: 16px;
68
- }
69
- .ke-icon-selectall {
70
- background-position: 0px -128px;
71
- width: 16px;
72
- height: 16px;
73
- }
74
- .ke-icon-justifyleft {
75
- background-position: 0px -144px;
76
- width: 16px;
77
- height: 16px;
78
- }
79
- .ke-icon-justifycenter {
80
- background-position: 0px -160px;
81
- width: 16px;
82
- height: 16px;
83
- }
84
- .ke-icon-justifyright {
85
- background-position: 0px -176px;
86
- width: 16px;
87
- height: 16px;
88
- }
89
- .ke-icon-justifyfull {
90
- background-position: 0px -192px;
91
- width: 16px;
92
- height: 16px;
93
- }
94
- .ke-icon-insertorderedlist {
95
- background-position: 0px -208px;
96
- width: 16px;
97
- height: 16px;
98
- }
99
- .ke-icon-insertunorderedlist {
100
- background-position: 0px -224px;
101
- width: 16px;
102
- height: 16px;
103
- }
104
- .ke-icon-indent {
105
- background-position: 0px -240px;
106
- width: 16px;
107
- height: 16px;
108
- }
109
- .ke-icon-outdent {
110
- background-position: 0px -256px;
111
- width: 16px;
112
- height: 16px;
113
- }
114
- .ke-icon-subscript {
115
- background-position: 0px -272px;
116
- width: 16px;
117
- height: 16px;
118
- }
119
- .ke-icon-superscript {
120
- background-position: 0px -288px;
121
- width: 16px;
122
- height: 16px;
123
- }
124
- .ke-icon-date {
125
- background-position: 0px -304px;
126
- width: 25px;
127
- height: 16px;
128
- }
129
- .ke-icon-time {
130
- background-position: 0px -320px;
131
- width: 25px;
132
- height: 16px;
133
- }
134
- .ke-icon-formatblock {
135
- background-position: 0px -336px;
136
- width: 25px;
137
- height: 16px;
138
- }
139
- .ke-icon-fontname {
140
- background-position: 0px -352px;
141
- width: 21px;
142
- height: 16px;
143
- }
144
- .ke-icon-fontsize {
145
- background-position: 0px -368px;
146
- width: 23px;
147
- height: 16px;
148
- }
149
- .ke-icon-forecolor {
150
- background-position: 0px -384px;
151
- width: 20px;
152
- height: 16px;
153
- }
154
- .ke-icon-hilitecolor {
155
- background-position: 0px -400px;
156
- width: 23px;
157
- height: 16px;
158
- }
159
- .ke-icon-bold {
160
- background-position: 0px -416px;
161
- width: 16px;
162
- height: 16px;
163
- }
164
- .ke-icon-italic {
165
- background-position: 0px -432px;
166
- width: 16px;
167
- height: 16px;
168
- }
169
- .ke-icon-underline {
170
- background-position: 0px -448px;
171
- width: 16px;
172
- height: 16px;
173
- }
174
- .ke-icon-strikethrough {
175
- background-position: 0px -464px;
176
- width: 16px;
177
- height: 16px;
178
- }
179
- .ke-icon-removeformat {
180
- background-position: 0px -480px;
181
- width: 16px;
182
- height: 16px;
183
- }
184
- .ke-icon-image {
185
- background-position: 0px -496px;
186
- width: 16px;
187
- height: 16px;
188
- }
189
- .ke-icon-flash {
190
- background-position: 0px -512px;
191
- width: 16px;
192
- height: 16px;
193
- }
194
- .ke-icon-media {
195
- background-position: 0px -528px;
196
- width: 16px;
197
- height: 16px;
198
- }
199
- .ke-icon-div {
200
- background-position: 0px -544px;
201
- width: 16px;
202
- height: 16px;
203
- }
204
- .ke-icon-formula {
205
- background-position: 0px -576px;
206
- width: 16px;
207
- height: 16px;
208
- }
209
- .ke-icon-hr {
210
- background-position: 0px -592px;
211
- width: 16px;
212
- height: 16px;
213
- }
214
- .ke-icon-emoticons {
215
- background-position: 0px -608px;
216
- width: 16px;
217
- height: 16px;
218
- }
219
- .ke-icon-link {
220
- background-position: 0px -624px;
221
- width: 16px;
222
- height: 16px;
223
- }
224
- .ke-icon-unlink {
225
- background-position: 0px -640px;
226
- width: 16px;
227
- height: 16px;
228
- }
229
- .ke-icon-fullscreen {
230
- background-position: 0px -656px;
231
- width: 16px;
232
- height: 16px;
233
- }
234
- .ke-icon-about {
235
- background-position: 0px -672px;
236
- width: 16px;
237
- height: 16px;
238
- }
239
- .ke-icon-plainpaste {
240
- background-position: 0px -704px;
241
- width: 16px;
242
- height: 16px;
243
- }
244
- .ke-icon-wordpaste {
245
- background-position: 0px -720px;
246
- width: 16px;
247
- height: 16px;
248
- }
249
- .ke-icon-table {
250
- background-position: 0px -784px;
251
- width: 16px;
252
- height: 16px;
253
- }
254
- .ke-icon-tablemenu {
255
- background-position: 0px -768px;
256
- width: 16px;
257
- height: 16px;
258
- }
259
- .ke-icon-tableinsert {
260
- background-position: 0px -784px;
261
- width: 16px;
262
- height: 16px;
263
- }
264
- .ke-icon-tabledelete {
265
- background-position: 0px -800px;
266
- width: 16px;
267
- height: 16px;
268
- }
269
- .ke-icon-tablecolinsertleft {
270
- background-position: 0px -816px;
271
- width: 16px;
272
- height: 16px;
273
- }
274
- .ke-icon-tablecolinsertright {
275
- background-position: 0px -832px;
276
- width: 16px;
277
- height: 16px;
278
- }
279
- .ke-icon-tablerowinsertabove {
280
- background-position: 0px -848px;
281
- width: 16px;
282
- height: 16px;
283
- }
284
- .ke-icon-tablerowinsertbelow {
285
- background-position: 0px -864px;
286
- width: 16px;
287
- height: 16px;
288
- }
289
- .ke-icon-tablecoldelete {
290
- background-position: 0px -880px;
291
- width: 16px;
292
- height: 16px;
293
- }
294
- .ke-icon-tablerowdelete {
295
- background-position: 0px -896px;
296
- width: 16px;
297
- height: 16px;
298
- }
299
- .ke-icon-tablecellprop {
300
- background-position: 0px -912px;
301
- width: 16px;
302
- height: 16px;
303
- }
304
- .ke-icon-tableprop {
305
- background-position: 0px -928px;
306
- width: 16px;
307
- height: 16px;
308
- }
309
- .ke-icon-checked {
310
- background-position: 0px -944px;
311
- width: 16px;
312
- height: 16px;
313
- }
314
- .ke-icon-code {
315
- background-position: 0px -960px;
316
- width: 16px;
317
- height: 16px;
318
- }
319
- .ke-icon-map {
320
- background-position: 0px -976px;
321
- width: 16px;
322
- height: 16px;
323
- }
324
- .ke-icon-lineheight {
325
- background-position: 0px -992px;
326
- width: 16px;
327
- height: 16px;
328
- }
329
- .ke-icon-clearhtml {
330
- background-position: 0px -1008px;
331
- width: 16px;
332
- height: 16px;
333
- }
334
- .ke-icon-pagebreak {
335
- background-position: 0px -1024px;
336
- width: 16px;
337
- height: 16px;
338
- }
339
- .ke-icon-insertfile {
340
- background-position: 0px -1040px;
341
- width: 16px;
342
- height: 16px;
343
- }
344
- .ke-icon-quickformat {
345
- background-position: 0px -1056px;
346
- width: 16px;
347
- height: 16px;
348
- }
349
- .ke-icon-template {
350
- background-position: 0px -1072px;
351
- width: 16px;
352
- height: 16px;
353
- }
354
- .ke-icon-tablecellsplit {
355
- background-position: 0px -1088px;
356
- width: 16px;
357
- height: 16px;
358
- }
359
- .ke-icon-tablerowmerge {
360
- background-position: 0px -1104px;
361
- width: 16px;
362
- height: 16px;
363
- }
364
- .ke-icon-tablerowsplit {
365
- background-position: 0px -1120px;
366
- width: 16px;
367
- height: 16px;
368
- }
369
- .ke-icon-tablecolmerge {
370
- background-position: 0px -1136px;
371
- width: 16px;
372
- height: 16px;
373
- }
374
- .ke-icon-tablecolsplit {
375
- background-position: 0px -1152px;
376
- width: 16px;
377
- height: 16px;
378
- }
379
- .ke-icon-anchor {
380
- background-position: 0px -1168px;
381
- width: 16px;
382
- height: 16px;
383
- }
384
- .ke-icon-search {
385
- background-position: 0px -1184px;
386
- width: 16px;
387
- height: 16px;
388
- }
389
- .ke-icon-new {
390
- background-position: 0px -1200px;
391
- width: 16px;
392
- height: 16px;
393
- }
394
- .ke-icon-specialchar {
395
- background-position: 0px -1216px;
396
- width: 16px;
397
- height: 16px;
398
- }
399
- /* container */
400
- .ke-container {
401
- display: block;
402
- border: 1px solid #CCCCCC;
403
- background-color: #FFF;
404
- overflow: hidden;
405
- margin: 0;
406
- padding: 0;
407
- }
408
- /* toolbar */
409
- .ke-toolbar {
410
- border-bottom: 1px solid #CCC;
411
- background-color: #F0F0EE;
412
- padding: 2px 5px;
413
- overflow: hidden;
414
- }
415
- .ke-toolbar-icon {
416
- background-repeat: no-repeat;
417
- font-size: 0;
418
- line-height: 0;
419
- overflow: hidden;
420
- }
421
- .ke-toolbar-icon-url {
422
- background-image: url(default.gif);
423
- }
424
- .ke-toolbar .ke-outline {
425
- border: 1px solid #F0F0EE;
426
- margin: 1px;
427
- padding: 1px 2px;
428
- font-size: 0;
429
- line-height: 0;
430
- overflow: hidden;
431
- cursor: pointer;
432
- }
433
- .ke-toolbar .ke-on {
434
- border: 1px solid #5690D2;
435
- }
436
- .ke-toolbar .ke-selected {
437
- border: 1px solid #5690D2;
438
- background-color: #E9EFF6;
439
- }
440
- .ke-toolbar .ke-disabled {
441
- cursor: default;
442
- }
443
- .ke-toolbar .ke-separator {
444
- height: 16px;
445
- margin: 2px 3px;
446
- border-left: 1px solid #A0A0A0;
447
- border-right: 1px solid #FFFFFF;
448
- border-top:0;
449
- border-bottom:0;
450
- width: 0;
451
- font-size: 0;
452
- line-height: 0;
453
- overflow: hidden;
454
- }
455
- /* edit */
456
- .ke-edit {
457
- padding: 0;
458
- }
459
- .ke-edit-iframe,
460
- .ke-edit-textarea {
461
- border: 0;
462
- margin: 0;
463
- padding: 0;
464
- }
465
- .ke-edit-textarea {
466
- font: 12px/1.5 "Consolas", "Monaco", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace;
467
- color: #000;
468
- overflow: auto;
469
- resize: none;
470
- }
471
- .ke-edit-textarea:focus {
472
- outline: none;
473
- }
474
- /* statusbar */
475
- .ke-statusbar {
476
- position: relative;
477
- background-color: #F0F0EE;
478
- border-top: 1px solid #CCCCCC;
479
- font-size: 0;
480
- line-height: 0;
481
- *height: 12px;
482
- overflow: hidden;
483
- text-align: center;
484
- cursor: s-resize;
485
- }
486
- .ke-statusbar-center-icon {
487
- background-position: -0px -754px;
488
- width: 15px;
489
- height: 11px;
490
- background-image: url(default.gif);
491
- }
492
- .ke-statusbar-right-icon {
493
- position: absolute;
494
- right: 0;
495
- bottom: 0;
496
- cursor: se-resize;
497
- background-position: -5px -741px;
498
- width: 11px;
499
- height: 11px;
500
- background-image: url(default.gif);
501
- }
502
- /* menu */
503
- .ke-menu {
504
- border: 1px solid #A0A0A0;
505
- background-color: #F1F1F1;
506
- color: #222222;
507
- padding: 2px;
508
- font-family: "sans serif",tahoma,verdana,helvetica;
509
- font-size: 12px;
510
- text-align: left;
511
- overflow: hidden;
512
- }
513
- .ke-menu-item {
514
- border: 1px solid #F1F1F1;
515
- background-color: #F1F1F1;
516
- color: #222222;
517
- height: 24px;
518
- overflow: hidden;
519
- cursor: pointer;
520
- }
521
- .ke-menu-item-on {
522
- border: 1px solid #5690D2;
523
- background-color: #E9EFF6;
524
- }
525
- .ke-menu-item-left {
526
- width: 27px;
527
- text-align: center;
528
- overflow: hidden;
529
- }
530
- .ke-menu-item-center {
531
- width: 0;
532
- height: 24px;
533
- border-left: 1px solid #E3E3E3;
534
- border-right: 1px solid #FFFFFF;
535
- border-top: 0;
536
- border-bottom: 0;
537
- }
538
- .ke-menu-item-center-on {
539
- border-left: 1px solid #E9EFF6;
540
- border-right: 1px solid #E9EFF6;
541
- }
542
- .ke-menu-item-right {
543
- border: 0;
544
- padding: 0 0 0 5px;
545
- line-height: 24px;
546
- text-align: left;
547
- overflow: hidden;
548
- }
549
- .ke-menu-separator {
550
- margin: 2px 0;
551
- height: 0;
552
- overflow: hidden;
553
- border-top: 1px solid #CCCCCC;
554
- border-bottom: 1px solid #FFFFFF;
555
- border-left: 0;
556
- border-right: 0;
557
- }
558
- /* colorpicker */
559
- .ke-colorpicker {
560
- border: 1px solid #A0A0A0;
561
- background-color: #F1F1F1;
562
- color: #222222;
563
- padding: 2px;
564
- }
565
- .ke-colorpicker-table {
566
- border:0;
567
- margin:0;
568
- padding:0;
569
- border-collapse: separate;
570
- }
571
- .ke-colorpicker-cell {
572
- font-size: 0;
573
- line-height: 0;
574
- border: 1px solid #F0F0EE;
575
- cursor: pointer;
576
- margin:3px;
577
- padding:0;
578
- }
579
- .ke-colorpicker-cell-top {
580
- font-family: "sans serif",tahoma,verdana,helvetica;
581
- font-size: 12px;
582
- line-height: 24px;
583
- border: 1px solid #F0F0EE;
584
- cursor: pointer;
585
- margin:0;
586
- padding:0;
587
- text-align: center;
588
- }
589
- .ke-colorpicker-cell-on {
590
- border: 1px solid #5690D2;
591
- }
592
- .ke-colorpicker-cell-selected {
593
- border: 1px solid #2446AB;
594
- }
595
- .ke-colorpicker-cell-color {
596
- width: 14px;
597
- height: 14px;
598
- margin: 3px;
599
- padding: 0;
600
- border: 0;
601
- }
602
- /* dialog */
603
- .ke-dialog {
604
- position: absolute;
605
- margin: 0;
606
- padding: 0;
607
- color: #333;
608
- background-color: #F0F0EE;
609
- }
610
- .ke-dialog-shadow {
611
- border: 1px solid #A0A0A0;
612
- border-radius: 0 0 4px 4px;
613
- box-shadow: 0 4px 16px #A0A0A0;
614
- }
615
- .ke-dialog-no-shadow {
616
- border: 1px solid #A0A0A0;
617
- }
618
- .ke-dialog-header {
619
- border:0;
620
- margin:0;
621
- background-color: #F0F0EE;
622
- padding: 10px;
623
- text-align: left;
624
- font: 14px/1 "sans serif",tahoma,verdana,helvetica;
625
- font-weight: bold;
626
- color: #222222;
627
- cursor: move;
628
- }
629
- .ke-dialog-icon-close {
630
- display: block;
631
- background-position: 0px -688px;
632
- width: 16px;
633
- height: 16px;
634
- position: absolute;
635
- right: 15px;
636
- top: 15px;
637
- cursor: pointer;
638
- background-image: url(default.gif);
639
- overflow: hidden;
640
- right: 10px;
641
- top: 10px;
642
- }
643
- .ke-dialog-body {
644
- font: 12px/1.5 "sans serif",tahoma,verdana,helvetica;
645
- text-align: left;
646
- overflow: hidden;
647
- }
648
- .ke-dialog-body textarea {
649
- display: block;
650
- overflow: auto;
651
- padding: 0;
652
- resize: none;
653
- }
654
- .ke-dialog-body textarea:focus,
655
- .ke-dialog-body input:focus,
656
- .ke-dialog-body select:focus {
657
- outline: none;
658
- }
659
- .ke-dialog-body label {
660
- margin-right: 10px;
661
- cursor: pointer;
662
- display: -moz-inline-stack;
663
- display: inline-block;
664
- vertical-align: middle;
665
- zoom: 1;
666
- *display: inline;
667
- }
668
- .ke-dialog-body img {
669
- display: -moz-inline-stack;
670
- display: inline-block;
671
- vertical-align: middle;
672
- zoom: 1;
673
- *display: inline;
674
- }
675
- .ke-dialog-body select {
676
- display: -moz-inline-stack;
677
- display: inline-block;
678
- vertical-align: middle;
679
- zoom: 1;
680
- *display: inline;
681
- }
682
- .ke-dialog-body .ke-textarea {
683
- display: block;
684
- width: 408px;
685
- height: 260px;
686
- font-family: "sans serif",tahoma,verdana,helvetica;
687
- font-size: 12px;
688
- border-color: #848484 #E0E0E0 #E0E0E0 #848484;
689
- border-style: solid;
690
- border-width: 1px;
691
- }
692
- .ke-dialog-body .ke-form {
693
- margin: 0;
694
- padding: 0;
695
- }
696
- .ke-dialog-row {
697
- margin-bottom: 10px;
698
- }
699
- .ke-dialog-footer {
700
- font: 12px/1 "sans serif",tahoma,verdana,helvetica;
701
- text-align: right;
702
- padding:0 0 5px 0;
703
- }
704
- .ke-dialog-preview,
705
- .ke-dialog-yes {
706
- margin: 5px;
707
- }
708
- .ke-dialog-no {
709
- margin: 5px 10px 5px 5px;
710
- }
711
- .ke-dialog-mask {
712
- background-color:#FFF;
713
- filter:alpha(opacity=50);
714
- opacity:0.5;
715
- }
716
- .ke-button-common {
717
- background: url(bg.gif) no-repeat scroll 0 0 transparent;
718
- cursor: pointer;
719
- height: 25px;
720
- line-height: 25px;
721
- overflow: visible;
722
- display: inline-block;
723
- vertical-align: top;
724
- }
725
- .ke-button-outer {
726
- background-position: 0 0;
727
- padding: 0;
728
- position: relative;
729
- display: -moz-inline-stack;
730
- display: inline-block;
731
- vertical-align: middle;
732
- zoom: 1;
733
- *display: inline;
734
- }
735
- .ke-button {
736
- background-position: right 0;
737
- padding: 0 12px;
738
- margin: 0;
739
- font-family: "sans serif",tahoma,verdana,helvetica;
740
- border: 0 none;
741
- color: #333;
742
- font-size: 12px;
743
- font-weight: bold;
744
- left: 2px;
745
- text-decoration: none;
746
- }
747
- /* inputbox */
748
- .ke-input-text {
749
- background-color:#FFFFFF;
750
- font-family: "sans serif",tahoma,verdana,helvetica;
751
- font-size: 12px;
752
- line-height: 17px;
753
- height: 17px;
754
- padding: 2px 4px;
755
- border-color: #848484 #E0E0E0 #E0E0E0 #848484;
756
- border-style: solid;
757
- border-width: 1px;
758
- display: -moz-inline-stack;
759
- display: inline-block;
760
- vertical-align: middle;
761
- zoom: 1;
762
- *display: inline;
763
- }
764
- .ke-input-number {
765
- width: 50px;
766
- }
767
- .ke-input-color {
768
- border: 1px solid #A0A0A0;
769
- background-color: #FFFFFF;
770
- font-size: 12px;
771
- width: 60px;
772
- height: 20px;
773
- line-height: 20px;
774
- padding-left: 5px;
775
- overflow: hidden;
776
- cursor: pointer;
777
- display: -moz-inline-stack;
778
- display: inline-block;
779
- vertical-align: middle;
780
- zoom: 1;
781
- *display: inline;
782
- }
783
- .ke-upload-area {
784
- position: relative;
785
- overflow: hidden;
786
- }
787
- .ke-upload-area .ke-upload-file {
788
- position: absolute;
789
- top: 0;
790
- right: 0;
791
- height: 25px;
792
- padding: 0;
793
- margin: 0;
794
- z-index: 811212;
795
- border: 0 none;
796
- opacity:0;
797
- filter:alpha(opacity=0);
798
- }
799
- /* tabs */
800
- .ke-tabs {
801
- font: 12px/1 "sans serif",tahoma,verdana,helvetica;
802
- border-bottom:1px solid #A0A0A0;
803
- padding-left:5px;
804
- margin-bottom:10px;
805
- }
806
- .ke-tabs-ul {
807
- list-style-image:none;
808
- list-style-position:outside;
809
- list-style-type:none;
810
- margin:0;
811
- padding:0;
812
- }
813
- .ke-tabs-li {
814
- position: relative;
815
- border: 1px solid #A0A0A0;
816
- background-color: #E0E0E0;
817
- margin: 0 2px -1px 0;
818
- padding: 0 20px;
819
- float: left;
820
- line-height: 25px;
821
- text-align: center;
822
- color: #555555;
823
- cursor: pointer;
824
- }
825
- .ke-tabs-li-selected {
826
- background-color: #F0F0EE;
827
- border-bottom: 1px solid #F0F0EE;
828
- color: #000;
829
- cursor: default;
830
- }
831
- .ke-tabs-li-on {
832
- background-color: #F0F0EE;
833
- color: #000;
834
- }
835
- /* emoticons */
836
- .ke-plugin-emoticons {
837
- position: relative;
838
- }
839
- .ke-plugin-emoticons .ke-preview {
840
- position: absolute;
841
- text-align: center;
842
- margin: 2px;
843
- padding: 10px;
844
- top: 0;
845
- border: 1px solid #A0A0A0;
846
- background-color: #FFFFFF;
847
- display: none;
848
- }
849
- .ke-plugin-emoticons .ke-preview-img {
850
- border:0;
851
- margin:0;
852
- padding:0;
853
- }
854
- .ke-plugin-emoticons .ke-table {
855
- border:0;
856
- margin:0;
857
- padding:0;
858
- border-collapse:separate;
859
- }
860
- .ke-plugin-emoticons .ke-cell {
861
- margin:0;
862
- padding:1px;
863
- border:1px solid #F0F0EE;
864
- cursor:pointer;
865
- }
866
- .ke-plugin-emoticons .ke-on {
867
- border: 1px solid #5690D2;
868
- background-color: #E9EFF6;
869
- }
870
- .ke-plugin-emoticons .ke-img {
871
- display:block;
872
- background-repeat:no-repeat;
873
- overflow:hidden;
874
- margin:2px;
875
- width:24px;
876
- height:24px;
877
- margin: 0;
878
- padding: 0;
879
- border: 0;
880
- }
881
- .ke-plugin-emoticons .ke-page {
882
- text-align: right;
883
- margin: 5px;
884
- padding: 0;
885
- border: 0;
886
- font: 12px/1 "sans serif",tahoma,verdana,helvetica;
887
- color: #333;
888
- text-decoration: none;
889
- }
890
- .ke-plugin-plainpaste-textarea,
891
- .ke-plugin-wordpaste-iframe {
892
- display: block;
893
- width: 408px;
894
- height: 260px;
895
- font-family: "sans serif",tahoma,verdana,helvetica;
896
- font-size: 12px;
897
- border-color: #848484 #E0E0E0 #E0E0E0 #848484;
898
- border-style: solid;
899
- border-width: 1px;
900
- }
901
- /* filemanager */
902
- .ke-plugin-filemanager-header {
903
- width: 100%;
904
- margin-bottom: 10px;
905
- }
906
- .ke-plugin-filemanager-header .ke-left {
907
- float: left;
908
- }
909
- .ke-plugin-filemanager-header .ke-right {
910
- float: right;
911
- }
912
- .ke-plugin-filemanager-body {
913
- overflow: scroll;
914
- background-color:#FFFFFF;
915
- border-color: #848484 #E0E0E0 #E0E0E0 #848484;
916
- border-style: solid;
917
- border-width: 1px;
918
- width: 470px;
919
- height: 370px;
920
- padding: 5px;
921
- }
922
- .ke-plugin-filemanager-body .ke-item {
923
- width: 100px;
924
- margin: 5px;
925
- }
926
- .ke-plugin-filemanager-body .ke-photo {
927
- border: 1px solid #DDDDDD;
928
- background-color:#FFFFFF;
929
- padding: 10px;
930
- }
931
- .ke-plugin-filemanager-body .ke-name {
932
- width: 100px;
933
- text-align: center;
934
- overflow: hidden;
935
- }
936
- .ke-plugin-filemanager-body .ke-on {
937
- border: 1px solid #5690D2;
938
- background-color: #E9EFF6;
939
- }
940
- .ke-plugin-filemanager-body .ke-table {
941
- width: 95%;
942
- border: 0;
943
- margin: 0;
944
- padding: 0;
945
- border-collapse: separate;
946
- }
947
- .ke-plugin-filemanager-body .ke-table .ke-cell {
948
- margin: 0;
949
- padding: 0;
950
- border: 0;
951
- }
952
- .ke-plugin-filemanager-body .ke-table .ke-name {
953
- width: 55%;
954
- text-align: left;
955
- }
956
- .ke-plugin-filemanager-body .ke-table .ke-size {
957
- width: 15%;
958
- text-align: left;
959
- }
960
- .ke-plugin-filemanager-body .ke-table .ke-datetime {
961
- width: 30%;
962
- text-align: center;
963
- }
964
- /* template */
965
- .ke-plugin-template .ke-header {
966
- width: 100%;
967
- margin-bottom: 10px;
968
- }
969
- .ke-plugin-template label {
970
- margin-right: 0;
971
- cursor: pointer;
972
- font-weight: normal;
973
- display: inline;
974
- vertical-align: top;
975
- }
976
- .ke-plugin-template .ke-left {
977
- float: left;
978
- }
979
- .ke-plugin-template .ke-right {
980
- float: right;
1
+ /* common */
2
+ .ke-inline-block {
3
+ display: -moz-inline-stack;
4
+ display: inline-block;
5
+ vertical-align: middle;
6
+ zoom: 1;
7
+ *display: inline;
8
+ }
9
+ .ke-clearfix {
10
+ zoom: 1;
11
+ }
12
+ .ke-clearfix:after {
13
+ content: ".";
14
+ display: block;
15
+ clear: both;
16
+ font-size: 0;
17
+ height: 0;
18
+ line-height: 0;
19
+ visibility: hidden;
20
+ }
21
+ .ke-menu a,
22
+ .ke-menu a:hover,
23
+ .ke-dialog a,
24
+ .ke-dialog a:hover {
25
+ color: #337FE5;
26
+ text-decoration: none;
27
+ }
28
+ /* icons */
29
+ .ke-icon-source {
30
+ background-position: 0px 0px;
31
+ width: 16px;
32
+ height: 16px;
33
+ }
34
+ .ke-icon-preview {
35
+ background-position: 0px -16px;
36
+ width: 16px;
37
+ height: 16px;
38
+ }
39
+ .ke-icon-print {
40
+ background-position: 0px -32px;
41
+ width: 16px;
42
+ height: 16px;
43
+ }
44
+ .ke-icon-undo {
45
+ background-position: 0px -48px;
46
+ width: 16px;
47
+ height: 16px;
48
+ }
49
+ .ke-icon-redo {
50
+ background-position: 0px -64px;
51
+ width: 16px;
52
+ height: 16px;
53
+ }
54
+ .ke-icon-cut {
55
+ background-position: 0px -80px;
56
+ width: 16px;
57
+ height: 16px;
58
+ }
59
+ .ke-icon-copy {
60
+ background-position: 0px -96px;
61
+ width: 16px;
62
+ height: 16px;
63
+ }
64
+ .ke-icon-paste {
65
+ background-position: 0px -112px;
66
+ width: 16px;
67
+ height: 16px;
68
+ }
69
+ .ke-icon-selectall {
70
+ background-position: 0px -128px;
71
+ width: 16px;
72
+ height: 16px;
73
+ }
74
+ .ke-icon-justifyleft {
75
+ background-position: 0px -144px;
76
+ width: 16px;
77
+ height: 16px;
78
+ }
79
+ .ke-icon-justifycenter {
80
+ background-position: 0px -160px;
81
+ width: 16px;
82
+ height: 16px;
83
+ }
84
+ .ke-icon-justifyright {
85
+ background-position: 0px -176px;
86
+ width: 16px;
87
+ height: 16px;
88
+ }
89
+ .ke-icon-justifyfull {
90
+ background-position: 0px -192px;
91
+ width: 16px;
92
+ height: 16px;
93
+ }
94
+ .ke-icon-insertorderedlist {
95
+ background-position: 0px -208px;
96
+ width: 16px;
97
+ height: 16px;
98
+ }
99
+ .ke-icon-insertunorderedlist {
100
+ background-position: 0px -224px;
101
+ width: 16px;
102
+ height: 16px;
103
+ }
104
+ .ke-icon-indent {
105
+ background-position: 0px -240px;
106
+ width: 16px;
107
+ height: 16px;
108
+ }
109
+ .ke-icon-outdent {
110
+ background-position: 0px -256px;
111
+ width: 16px;
112
+ height: 16px;
113
+ }
114
+ .ke-icon-subscript {
115
+ background-position: 0px -272px;
116
+ width: 16px;
117
+ height: 16px;
118
+ }
119
+ .ke-icon-superscript {
120
+ background-position: 0px -288px;
121
+ width: 16px;
122
+ height: 16px;
123
+ }
124
+ .ke-icon-date {
125
+ background-position: 0px -304px;
126
+ width: 25px;
127
+ height: 16px;
128
+ }
129
+ .ke-icon-time {
130
+ background-position: 0px -320px;
131
+ width: 25px;
132
+ height: 16px;
133
+ }
134
+ .ke-icon-formatblock {
135
+ background-position: 0px -336px;
136
+ width: 25px;
137
+ height: 16px;
138
+ }
139
+ .ke-icon-fontname {
140
+ background-position: 0px -352px;
141
+ width: 21px;
142
+ height: 16px;
143
+ }
144
+ .ke-icon-fontsize {
145
+ background-position: 0px -368px;
146
+ width: 23px;
147
+ height: 16px;
148
+ }
149
+ .ke-icon-forecolor {
150
+ background-position: 0px -384px;
151
+ width: 20px;
152
+ height: 16px;
153
+ }
154
+ .ke-icon-hilitecolor {
155
+ background-position: 0px -400px;
156
+ width: 23px;
157
+ height: 16px;
158
+ }
159
+ .ke-icon-bold {
160
+ background-position: 0px -416px;
161
+ width: 16px;
162
+ height: 16px;
163
+ }
164
+ .ke-icon-italic {
165
+ background-position: 0px -432px;
166
+ width: 16px;
167
+ height: 16px;
168
+ }
169
+ .ke-icon-underline {
170
+ background-position: 0px -448px;
171
+ width: 16px;
172
+ height: 16px;
173
+ }
174
+ .ke-icon-strikethrough {
175
+ background-position: 0px -464px;
176
+ width: 16px;
177
+ height: 16px;
178
+ }
179
+ .ke-icon-removeformat {
180
+ background-position: 0px -480px;
181
+ width: 16px;
182
+ height: 16px;
183
+ }
184
+ .ke-icon-image {
185
+ background-position: 0px -496px;
186
+ width: 16px;
187
+ height: 16px;
188
+ }
189
+ .ke-icon-flash {
190
+ background-position: 0px -512px;
191
+ width: 16px;
192
+ height: 16px;
193
+ }
194
+ .ke-icon-media {
195
+ background-position: 0px -528px;
196
+ width: 16px;
197
+ height: 16px;
198
+ }
199
+ .ke-icon-div {
200
+ background-position: 0px -544px;
201
+ width: 16px;
202
+ height: 16px;
203
+ }
204
+ .ke-icon-formula {
205
+ background-position: 0px -576px;
206
+ width: 16px;
207
+ height: 16px;
208
+ }
209
+ .ke-icon-hr {
210
+ background-position: 0px -592px;
211
+ width: 16px;
212
+ height: 16px;
213
+ }
214
+ .ke-icon-emoticons {
215
+ background-position: 0px -608px;
216
+ width: 16px;
217
+ height: 16px;
218
+ }
219
+ .ke-icon-link {
220
+ background-position: 0px -624px;
221
+ width: 16px;
222
+ height: 16px;
223
+ }
224
+ .ke-icon-unlink {
225
+ background-position: 0px -640px;
226
+ width: 16px;
227
+ height: 16px;
228
+ }
229
+ .ke-icon-fullscreen {
230
+ background-position: 0px -656px;
231
+ width: 16px;
232
+ height: 16px;
233
+ }
234
+ .ke-icon-about {
235
+ background-position: 0px -672px;
236
+ width: 16px;
237
+ height: 16px;
238
+ }
239
+ .ke-icon-plainpaste {
240
+ background-position: 0px -704px;
241
+ width: 16px;
242
+ height: 16px;
243
+ }
244
+ .ke-icon-wordpaste {
245
+ background-position: 0px -720px;
246
+ width: 16px;
247
+ height: 16px;
248
+ }
249
+ .ke-icon-table {
250
+ background-position: 0px -784px;
251
+ width: 16px;
252
+ height: 16px;
253
+ }
254
+ .ke-icon-tablemenu {
255
+ background-position: 0px -768px;
256
+ width: 16px;
257
+ height: 16px;
258
+ }
259
+ .ke-icon-tableinsert {
260
+ background-position: 0px -784px;
261
+ width: 16px;
262
+ height: 16px;
263
+ }
264
+ .ke-icon-tabledelete {
265
+ background-position: 0px -800px;
266
+ width: 16px;
267
+ height: 16px;
268
+ }
269
+ .ke-icon-tablecolinsertleft {
270
+ background-position: 0px -816px;
271
+ width: 16px;
272
+ height: 16px;
273
+ }
274
+ .ke-icon-tablecolinsertright {
275
+ background-position: 0px -832px;
276
+ width: 16px;
277
+ height: 16px;
278
+ }
279
+ .ke-icon-tablerowinsertabove {
280
+ background-position: 0px -848px;
281
+ width: 16px;
282
+ height: 16px;
283
+ }
284
+ .ke-icon-tablerowinsertbelow {
285
+ background-position: 0px -864px;
286
+ width: 16px;
287
+ height: 16px;
288
+ }
289
+ .ke-icon-tablecoldelete {
290
+ background-position: 0px -880px;
291
+ width: 16px;
292
+ height: 16px;
293
+ }
294
+ .ke-icon-tablerowdelete {
295
+ background-position: 0px -896px;
296
+ width: 16px;
297
+ height: 16px;
298
+ }
299
+ .ke-icon-tablecellprop {
300
+ background-position: 0px -912px;
301
+ width: 16px;
302
+ height: 16px;
303
+ }
304
+ .ke-icon-tableprop {
305
+ background-position: 0px -928px;
306
+ width: 16px;
307
+ height: 16px;
308
+ }
309
+ .ke-icon-checked {
310
+ background-position: 0px -944px;
311
+ width: 16px;
312
+ height: 16px;
313
+ }
314
+ .ke-icon-code {
315
+ background-position: 0px -960px;
316
+ width: 16px;
317
+ height: 16px;
318
+ }
319
+ .ke-icon-map {
320
+ background-position: 0px -976px;
321
+ width: 16px;
322
+ height: 16px;
323
+ }
324
+ .ke-icon-lineheight {
325
+ background-position: 0px -992px;
326
+ width: 16px;
327
+ height: 16px;
328
+ }
329
+ .ke-icon-clearhtml {
330
+ background-position: 0px -1008px;
331
+ width: 16px;
332
+ height: 16px;
333
+ }
334
+ .ke-icon-pagebreak {
335
+ background-position: 0px -1024px;
336
+ width: 16px;
337
+ height: 16px;
338
+ }
339
+ .ke-icon-insertfile {
340
+ background-position: 0px -1040px;
341
+ width: 16px;
342
+ height: 16px;
343
+ }
344
+ .ke-icon-quickformat {
345
+ background-position: 0px -1056px;
346
+ width: 16px;
347
+ height: 16px;
348
+ }
349
+ .ke-icon-template {
350
+ background-position: 0px -1072px;
351
+ width: 16px;
352
+ height: 16px;
353
+ }
354
+ .ke-icon-tablecellsplit {
355
+ background-position: 0px -1088px;
356
+ width: 16px;
357
+ height: 16px;
358
+ }
359
+ .ke-icon-tablerowmerge {
360
+ background-position: 0px -1104px;
361
+ width: 16px;
362
+ height: 16px;
363
+ }
364
+ .ke-icon-tablerowsplit {
365
+ background-position: 0px -1120px;
366
+ width: 16px;
367
+ height: 16px;
368
+ }
369
+ .ke-icon-tablecolmerge {
370
+ background-position: 0px -1136px;
371
+ width: 16px;
372
+ height: 16px;
373
+ }
374
+ .ke-icon-tablecolsplit {
375
+ background-position: 0px -1152px;
376
+ width: 16px;
377
+ height: 16px;
378
+ }
379
+ .ke-icon-anchor {
380
+ background-position: 0px -1168px;
381
+ width: 16px;
382
+ height: 16px;
383
+ }
384
+ .ke-icon-search {
385
+ background-position: 0px -1184px;
386
+ width: 16px;
387
+ height: 16px;
388
+ }
389
+ .ke-icon-new {
390
+ background-position: 0px -1200px;
391
+ width: 16px;
392
+ height: 16px;
393
+ }
394
+ .ke-icon-specialchar {
395
+ background-position: 0px -1216px;
396
+ width: 16px;
397
+ height: 16px;
398
+ }
399
+ /* container */
400
+ .ke-container {
401
+ display: block;
402
+ border: 1px solid #CCCCCC;
403
+ background-color: #FFF;
404
+ overflow: hidden;
405
+ margin: 0;
406
+ padding: 0;
407
+ }
408
+ /* toolbar */
409
+ .ke-toolbar {
410
+ border-bottom: 1px solid #CCC;
411
+ background-color: #F0F0EE;
412
+ padding: 2px 5px;
413
+ text-align: left;
414
+ overflow: hidden;
415
+ }
416
+ .ke-toolbar-icon {
417
+ background-repeat: no-repeat;
418
+ font-size: 0;
419
+ line-height: 0;
420
+ overflow: hidden;
421
+ }
422
+ .ke-toolbar-icon-url {
423
+ background-image: url(default.png);
424
+ }
425
+ .ke-toolbar .ke-outline {
426
+ border: 1px solid #F0F0EE;
427
+ margin: 1px;
428
+ padding: 1px 2px;
429
+ font-size: 0;
430
+ line-height: 0;
431
+ overflow: hidden;
432
+ cursor: pointer;
433
+ }
434
+ .ke-toolbar .ke-on {
435
+ border: 1px solid #5690D2;
436
+ }
437
+ .ke-toolbar .ke-selected {
438
+ border: 1px solid #5690D2;
439
+ background-color: #E9EFF6;
440
+ }
441
+ .ke-toolbar .ke-disabled {
442
+ cursor: default;
443
+ }
444
+ .ke-toolbar .ke-separator {
445
+ height: 16px;
446
+ margin: 2px 3px;
447
+ border-left: 1px solid #A0A0A0;
448
+ border-right: 1px solid #FFFFFF;
449
+ border-top:0;
450
+ border-bottom:0;
451
+ width: 0;
452
+ font-size: 0;
453
+ line-height: 0;
454
+ overflow: hidden;
455
+ }
456
+ /* edit */
457
+ .ke-edit {
458
+ padding: 0;
459
+ }
460
+ .ke-edit-iframe,
461
+ .ke-edit-textarea {
462
+ border: 0;
463
+ margin: 0;
464
+ padding: 0;
465
+ overflow: auto;
466
+ }
467
+ .ke-edit-textarea {
468
+ font: 12px/1.5 "Consolas", "Monaco", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace;
469
+ color: #000;
470
+ overflow: auto;
471
+ resize: none;
472
+ }
473
+ .ke-edit-textarea:focus {
474
+ outline: none;
475
+ }
476
+ /* statusbar */
477
+ .ke-statusbar {
478
+ position: relative;
479
+ background-color: #F0F0EE;
480
+ border-top: 1px solid #CCCCCC;
481
+ font-size: 0;
482
+ line-height: 0;
483
+ *height: 12px;
484
+ overflow: hidden;
485
+ text-align: center;
486
+ cursor: s-resize;
487
+ }
488
+ .ke-statusbar-center-icon {
489
+ background-position: -0px -754px;
490
+ width: 15px;
491
+ height: 11px;
492
+ background-image: url(default.png);
493
+ }
494
+ .ke-statusbar-right-icon {
495
+ position: absolute;
496
+ right: 0;
497
+ bottom: 0;
498
+ cursor: se-resize;
499
+ background-position: -5px -741px;
500
+ width: 11px;
501
+ height: 11px;
502
+ background-image: url(default.png);
503
+ }
504
+ /* menu */
505
+ .ke-menu {
506
+ border: 1px solid #A0A0A0;
507
+ background-color: #F1F1F1;
508
+ color: #222222;
509
+ padding: 2px;
510
+ font-family: "sans serif",tahoma,verdana,helvetica;
511
+ font-size: 12px;
512
+ text-align: left;
513
+ overflow: hidden;
514
+ }
515
+ .ke-menu-item {
516
+ border: 1px solid #F1F1F1;
517
+ background-color: #F1F1F1;
518
+ color: #222222;
519
+ height: 24px;
520
+ overflow: hidden;
521
+ cursor: pointer;
522
+ }
523
+ .ke-menu-item-on {
524
+ border: 1px solid #5690D2;
525
+ background-color: #E9EFF6;
526
+ }
527
+ .ke-menu-item-left {
528
+ width: 27px;
529
+ text-align: center;
530
+ overflow: hidden;
531
+ }
532
+ .ke-menu-item-center {
533
+ width: 0;
534
+ height: 24px;
535
+ border-left: 1px solid #E3E3E3;
536
+ border-right: 1px solid #FFFFFF;
537
+ border-top: 0;
538
+ border-bottom: 0;
539
+ }
540
+ .ke-menu-item-center-on {
541
+ border-left: 1px solid #E9EFF6;
542
+ border-right: 1px solid #E9EFF6;
543
+ }
544
+ .ke-menu-item-right {
545
+ border: 0;
546
+ padding: 0 0 0 5px;
547
+ line-height: 24px;
548
+ text-align: left;
549
+ overflow: hidden;
550
+ }
551
+ .ke-menu-separator {
552
+ margin: 2px 0;
553
+ height: 0;
554
+ overflow: hidden;
555
+ border-top: 1px solid #CCCCCC;
556
+ border-bottom: 1px solid #FFFFFF;
557
+ border-left: 0;
558
+ border-right: 0;
559
+ }
560
+ /* colorpicker */
561
+ .ke-colorpicker {
562
+ border: 1px solid #A0A0A0;
563
+ background-color: #F1F1F1;
564
+ color: #222222;
565
+ padding: 2px;
566
+ }
567
+ .ke-colorpicker-table {
568
+ border:0;
569
+ margin:0;
570
+ padding:0;
571
+ border-collapse: separate;
572
+ }
573
+ .ke-colorpicker-cell {
574
+ font-size: 0;
575
+ line-height: 0;
576
+ border: 1px solid #F0F0EE;
577
+ cursor: pointer;
578
+ margin:3px;
579
+ padding:0;
580
+ }
581
+ .ke-colorpicker-cell-top {
582
+ font-family: "sans serif",tahoma,verdana,helvetica;
583
+ font-size: 12px;
584
+ line-height: 24px;
585
+ border: 1px solid #F0F0EE;
586
+ cursor: pointer;
587
+ margin:0;
588
+ padding:0;
589
+ text-align: center;
590
+ }
591
+ .ke-colorpicker-cell-on {
592
+ border: 1px solid #5690D2;
593
+ }
594
+ .ke-colorpicker-cell-selected {
595
+ border: 1px solid #2446AB;
596
+ }
597
+ .ke-colorpicker-cell-color {
598
+ width: 14px;
599
+ height: 14px;
600
+ margin: 3px;
601
+ padding: 0;
602
+ border: 0;
603
+ }
604
+ /* dialog */
605
+ .ke-dialog {
606
+ position: absolute;
607
+ margin: 0;
608
+ padding: 0;
609
+ color: #333;
610
+ background-color: #F0F0EE;
611
+ }
612
+ .ke-dialog-shadow {
613
+ border: 1px solid #A0A0A0;
614
+ border-radius: 0 0 4px 4px;
615
+ box-shadow: 0 4px 16px #A0A0A0;
616
+ }
617
+ .ke-dialog-no-shadow {
618
+ border: 1px solid #A0A0A0;
619
+ }
620
+ .ke-dialog-header {
621
+ border:0;
622
+ margin:0;
623
+ background-color: #F0F0EE;
624
+ padding: 10px;
625
+ text-align: left;
626
+ font: 14px/1 "sans serif",tahoma,verdana,helvetica;
627
+ font-weight: bold;
628
+ color: #222222;
629
+ cursor: move;
630
+ }
631
+ .ke-dialog-icon-close {
632
+ display: block;
633
+ background-position: 0px -688px;
634
+ width: 16px;
635
+ height: 16px;
636
+ position: absolute;
637
+ right: 15px;
638
+ top: 15px;
639
+ cursor: pointer;
640
+ background-image: url(default.png);
641
+ overflow: hidden;
642
+ right: 10px;
643
+ top: 10px;
644
+ }
645
+ .ke-dialog-body {
646
+ font: 12px/1.5 "sans serif",tahoma,verdana,helvetica;
647
+ text-align: left;
648
+ overflow: hidden;
649
+ }
650
+ .ke-dialog-body textarea {
651
+ display: block;
652
+ overflow: auto;
653
+ padding: 0;
654
+ resize: none;
655
+ }
656
+ .ke-dialog-body textarea:focus,
657
+ .ke-dialog-body input:focus,
658
+ .ke-dialog-body select:focus {
659
+ outline: none;
660
+ }
661
+ .ke-dialog-body label {
662
+ margin-right: 10px;
663
+ cursor: pointer;
664
+ display: -moz-inline-stack;
665
+ display: inline-block;
666
+ vertical-align: middle;
667
+ zoom: 1;
668
+ *display: inline;
669
+ }
670
+ .ke-dialog-body img {
671
+ display: -moz-inline-stack;
672
+ display: inline-block;
673
+ vertical-align: middle;
674
+ zoom: 1;
675
+ *display: inline;
676
+ }
677
+ .ke-dialog-body select {
678
+ display: -moz-inline-stack;
679
+ display: inline-block;
680
+ vertical-align: middle;
681
+ zoom: 1;
682
+ *display: inline;
683
+ width: auto;
684
+ }
685
+ .ke-dialog-body .ke-textarea {
686
+ display: block;
687
+ width: 408px;
688
+ height: 260px;
689
+ font-family: "sans serif",tahoma,verdana,helvetica;
690
+ font-size: 12px;
691
+ border-color: #848484 #E0E0E0 #E0E0E0 #848484;
692
+ border-style: solid;
693
+ border-width: 1px;
694
+ }
695
+ .ke-dialog-body .ke-form {
696
+ margin: 0;
697
+ padding: 0;
698
+ }
699
+ .ke-dialog-loading {
700
+ position: absolute;
701
+ top: 0;
702
+ left: 0;
703
+ z-index: 1;
704
+ background: url("../common/loading.gif") no-repeat scroll center center transparent;
705
+ }
706
+ .ke-dialog-row {
707
+ margin-bottom: 10px;
708
+ }
709
+ .ke-dialog-footer {
710
+ font: 12px/1 "sans serif",tahoma,verdana,helvetica;
711
+ text-align: right;
712
+ padding:0 0 5px 0;
713
+ }
714
+ .ke-dialog-preview,
715
+ .ke-dialog-yes {
716
+ margin: 5px;
717
+ }
718
+ .ke-dialog-no {
719
+ margin: 5px 10px 5px 5px;
720
+ }
721
+ .ke-dialog-mask {
722
+ background-color:#FFF;
723
+ filter:alpha(opacity=50);
724
+ opacity:0.5;
725
+ }
726
+ .ke-button-common {
727
+ background: url(bg.gif) no-repeat scroll 0 0 transparent;
728
+ cursor: pointer;
729
+ height: 25px;
730
+ line-height: 25px;
731
+ overflow: visible;
732
+ display: inline-block;
733
+ vertical-align: top;
734
+ }
735
+ .ke-button-outer {
736
+ background-position: 0 0;
737
+ padding: 0;
738
+ position: relative;
739
+ display: -moz-inline-stack;
740
+ display: inline-block;
741
+ vertical-align: middle;
742
+ zoom: 1;
743
+ *display: inline;
744
+ }
745
+ .ke-button {
746
+ background-position: right 0;
747
+ padding: 0 12px;
748
+ margin: 0;
749
+ font-family: "sans serif",tahoma,verdana,helvetica;
750
+ border: 0 none;
751
+ color: #333;
752
+ font-size: 12px;
753
+ font-weight: bold;
754
+ left: 2px;
755
+ text-decoration: none;
756
+ }
757
+ /* inputbox */
758
+ .ke-input-text {
759
+ background-color:#FFFFFF;
760
+ font-family: "sans serif",tahoma,verdana,helvetica;
761
+ font-size: 12px;
762
+ line-height: 17px;
763
+ height: 17px;
764
+ padding: 2px 4px;
765
+ border-color: #848484 #E0E0E0 #E0E0E0 #848484;
766
+ border-style: solid;
767
+ border-width: 1px;
768
+ display: -moz-inline-stack;
769
+ display: inline-block;
770
+ vertical-align: middle;
771
+ zoom: 1;
772
+ *display: inline;
773
+ }
774
+ .ke-input-number {
775
+ width: 50px;
776
+ }
777
+ .ke-input-color {
778
+ border: 1px solid #A0A0A0;
779
+ background-color: #FFFFFF;
780
+ font-size: 12px;
781
+ width: 60px;
782
+ height: 20px;
783
+ line-height: 20px;
784
+ padding-left: 5px;
785
+ overflow: hidden;
786
+ cursor: pointer;
787
+ display: -moz-inline-stack;
788
+ display: inline-block;
789
+ vertical-align: middle;
790
+ zoom: 1;
791
+ *display: inline;
792
+ }
793
+ .ke-upload-area {
794
+ position: relative;
795
+ overflow: hidden;
796
+ }
797
+ .ke-upload-area .ke-upload-file {
798
+ position: absolute;
799
+ top: 0;
800
+ right: 0;
801
+ height: 25px;
802
+ padding: 0;
803
+ margin: 0;
804
+ z-index: 811212;
805
+ border: 0 none;
806
+ opacity:0;
807
+ filter:alpha(opacity=0);
808
+ }
809
+ /* tabs */
810
+ .ke-tabs {
811
+ font: 12px/1 "sans serif",tahoma,verdana,helvetica;
812
+ border-bottom:1px solid #A0A0A0;
813
+ padding-left:5px;
814
+ margin-bottom:10px;
815
+ }
816
+ .ke-tabs-ul {
817
+ list-style-image:none;
818
+ list-style-position:outside;
819
+ list-style-type:none;
820
+ margin:0;
821
+ padding:0;
822
+ }
823
+ .ke-tabs-li {
824
+ position: relative;
825
+ border: 1px solid #A0A0A0;
826
+ background-color: #E0E0E0;
827
+ margin: 0 2px -1px 0;
828
+ padding: 0 20px;
829
+ float: left;
830
+ line-height: 25px;
831
+ text-align: center;
832
+ color: #555555;
833
+ cursor: pointer;
834
+ }
835
+ .ke-tabs-li-selected {
836
+ background-color: #F0F0EE;
837
+ border-bottom: 1px solid #F0F0EE;
838
+ color: #000;
839
+ cursor: default;
840
+ }
841
+ .ke-tabs-li-on {
842
+ background-color: #F0F0EE;
843
+ color: #000;
844
+ }
845
+ /* emoticons */
846
+ .ke-plugin-emoticons {
847
+ position: relative;
848
+ }
849
+ .ke-plugin-emoticons .ke-preview {
850
+ position: absolute;
851
+ text-align: center;
852
+ margin: 2px;
853
+ padding: 10px;
854
+ top: 0;
855
+ border: 1px solid #A0A0A0;
856
+ background-color: #FFFFFF;
857
+ display: none;
858
+ }
859
+ .ke-plugin-emoticons .ke-preview-img {
860
+ border:0;
861
+ margin:0;
862
+ padding:0;
863
+ }
864
+ .ke-plugin-emoticons .ke-table {
865
+ border:0;
866
+ margin:0;
867
+ padding:0;
868
+ border-collapse:separate;
869
+ }
870
+ .ke-plugin-emoticons .ke-cell {
871
+ margin:0;
872
+ padding:1px;
873
+ border:1px solid #F0F0EE;
874
+ cursor:pointer;
875
+ }
876
+ .ke-plugin-emoticons .ke-on {
877
+ border: 1px solid #5690D2;
878
+ background-color: #E9EFF6;
879
+ }
880
+ .ke-plugin-emoticons .ke-img {
881
+ display:block;
882
+ background-repeat:no-repeat;
883
+ overflow:hidden;
884
+ margin:2px;
885
+ width:24px;
886
+ height:24px;
887
+ margin: 0;
888
+ padding: 0;
889
+ border: 0;
890
+ }
891
+ .ke-plugin-emoticons .ke-page {
892
+ text-align: right;
893
+ margin: 5px;
894
+ padding: 0;
895
+ border: 0;
896
+ font: 12px/1 "sans serif",tahoma,verdana,helvetica;
897
+ color: #333;
898
+ text-decoration: none;
899
+ }
900
+ .ke-plugin-plainpaste-textarea,
901
+ .ke-plugin-wordpaste-iframe {
902
+ display: block;
903
+ width: 408px;
904
+ height: 260px;
905
+ font-family: "sans serif",tahoma,verdana,helvetica;
906
+ font-size: 12px;
907
+ border-color: #848484 #E0E0E0 #E0E0E0 #848484;
908
+ border-style: solid;
909
+ border-width: 1px;
910
+ }
911
+ /* filemanager */
912
+ .ke-plugin-filemanager-header {
913
+ width: 100%;
914
+ margin-bottom: 10px;
915
+ }
916
+ .ke-plugin-filemanager-header .ke-left {
917
+ float: left;
918
+ }
919
+ .ke-plugin-filemanager-header .ke-right {
920
+ float: right;
921
+ }
922
+ .ke-plugin-filemanager-body {
923
+ overflow: scroll;
924
+ background-color:#FFFFFF;
925
+ border-color: #848484 #E0E0E0 #E0E0E0 #848484;
926
+ border-style: solid;
927
+ border-width: 1px;
928
+ width: 470px;
929
+ height: 370px;
930
+ padding: 5px;
931
+ }
932
+ .ke-plugin-filemanager-body .ke-item {
933
+ width: 100px;
934
+ margin: 5px;
935
+ }
936
+ .ke-plugin-filemanager-body .ke-photo {
937
+ border: 1px solid #DDDDDD;
938
+ background-color:#FFFFFF;
939
+ padding: 10px;
940
+ }
941
+ .ke-plugin-filemanager-body .ke-name {
942
+ width: 100px;
943
+ text-align: center;
944
+ overflow: hidden;
945
+ height:16px;
946
+ }
947
+ .ke-plugin-filemanager-body .ke-on {
948
+ border: 1px solid #5690D2;
949
+ background-color: #E9EFF6;
950
+ }
951
+ .ke-plugin-filemanager-body .ke-table {
952
+ width: 95%;
953
+ border: 0;
954
+ margin: 0;
955
+ padding: 0;
956
+ border-collapse: separate;
957
+ }
958
+ .ke-plugin-filemanager-body .ke-table .ke-cell {
959
+ margin: 0;
960
+ padding: 0;
961
+ border: 0;
962
+ }
963
+ .ke-plugin-filemanager-body .ke-table .ke-name {
964
+ width: 55%;
965
+ text-align: left;
966
+ }
967
+ .ke-plugin-filemanager-body .ke-table .ke-size {
968
+ width: 15%;
969
+ text-align: left;
970
+ }
971
+ .ke-plugin-filemanager-body .ke-table .ke-datetime {
972
+ width: 30%;
973
+ text-align: center;
974
+ }
975
+ /* template */
976
+ .ke-plugin-template .ke-header {
977
+ width: 100%;
978
+ margin-bottom: 10px;
979
+ }
980
+ .ke-plugin-template label {
981
+ margin-right: 0;
982
+ cursor: pointer;
983
+ font-weight: normal;
984
+ display: inline;
985
+ vertical-align: top;
986
+ }
987
+ .ke-plugin-template .ke-left {
988
+ float: left;
989
+ }
990
+ .ke-plugin-template .ke-right {
991
+ float: right;
981
992
  }