ckeditor-bootstrap-rails 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +4 -0
- data/ckeditor-bootstrap-rails.gemspec +18 -0
- data/lib/ckeditor-bootstrap-rails.rb +2 -0
- data/lib/ckeditor-bootstrap-rails/engine.rb +41 -0
- data/lib/ckeditor-bootstrap-rails/version.rb +3 -0
- data/vendor/assets/images/ckeditor-bootstrap/arrow.png +0 -0
- data/vendor/assets/images/ckeditor-bootstrap/close.png +0 -0
- data/vendor/assets/images/ckeditor-bootstrap/hidpi/close.png +0 -0
- data/vendor/assets/images/ckeditor-bootstrap/hidpi/lock-open.png +0 -0
- data/vendor/assets/images/ckeditor-bootstrap/hidpi/lock.png +0 -0
- data/vendor/assets/images/ckeditor-bootstrap/hidpi/refresh.png +0 -0
- data/vendor/assets/images/ckeditor-bootstrap/icons.png +0 -0
- data/vendor/assets/images/ckeditor-bootstrap/icons_hidpi.png +0 -0
- data/vendor/assets/images/ckeditor-bootstrap/lock-open.png +0 -0
- data/vendor/assets/images/ckeditor-bootstrap/lock.png +0 -0
- data/vendor/assets/images/ckeditor-bootstrap/refresh.png +0 -0
- data/vendor/assets/javascripts/ckeditor-bootstrap/skin.js +274 -0
- data/vendor/assets/stylesheets/ckeditor-bootstrap/contents.scss +118 -0
- data/vendor/assets/stylesheets/ckeditor-bootstrap/dialog.scss +598 -0
- data/vendor/assets/stylesheets/ckeditor-bootstrap/editor.scss +1613 -0
- metadata +65 -0
@@ -0,0 +1,598 @@
|
|
1
|
+
input.cke_dialog_ui_input_password, input.cke_dialog_ui_input_text, textarea.cke_dialog_ui_input_textarea {
|
2
|
+
background-color: #fff;
|
3
|
+
outline: 0;
|
4
|
+
width: 100%;
|
5
|
+
*width: 95%;
|
6
|
+
height: 30px;
|
7
|
+
padding: 4px 10px;
|
8
|
+
border: 1px solid #ddd;
|
9
|
+
border-radius: 4px;
|
10
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
11
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
12
|
+
-moz-box-sizing: border-box;
|
13
|
+
-webkit-box-sizing: border-box;
|
14
|
+
box-sizing: border-box
|
15
|
+
}
|
16
|
+
|
17
|
+
input.cke_dialog_ui_input_password:focus, input.cke_dialog_ui_input_text:focus, textarea.cke_dialog_ui_input_textarea:focus {
|
18
|
+
border-color: #66afe9;
|
19
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
|
20
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6)
|
21
|
+
}
|
22
|
+
|
23
|
+
.cke_dialog {
|
24
|
+
visibility: visible
|
25
|
+
}
|
26
|
+
|
27
|
+
.cke_dialog_body {
|
28
|
+
z-index: 1;
|
29
|
+
background: #eee;
|
30
|
+
border: 1px solid #ddd;
|
31
|
+
border-radius: 4px
|
32
|
+
}
|
33
|
+
|
34
|
+
.cke_browser_gecko19 .cke_dialog_body {
|
35
|
+
position: relative
|
36
|
+
}
|
37
|
+
|
38
|
+
.cke_dialog strong {
|
39
|
+
font-weight: 700
|
40
|
+
}
|
41
|
+
|
42
|
+
.cke_dialog_title {
|
43
|
+
font-weight: 700;
|
44
|
+
font-size: 13px;
|
45
|
+
cursor: move;
|
46
|
+
position: relative;
|
47
|
+
color: #333;
|
48
|
+
border-bottom: 1px solid #ddd;
|
49
|
+
padding: 10px 12px;
|
50
|
+
background: #eee
|
51
|
+
}
|
52
|
+
|
53
|
+
.cke_dialog_contents {
|
54
|
+
background-color: #fff;
|
55
|
+
overflow: auto;
|
56
|
+
padding: 15px 10px 5px;
|
57
|
+
margin-top: 35px;
|
58
|
+
border-top: 1px solid #ddd;
|
59
|
+
border-radius: 0 0 4px 4px
|
60
|
+
}
|
61
|
+
|
62
|
+
.cke_dialog_contents_body {
|
63
|
+
overflow: auto;
|
64
|
+
padding: 17px 10px 5px;
|
65
|
+
margin-top: 22px
|
66
|
+
}
|
67
|
+
|
68
|
+
.cke_dialog_footer {
|
69
|
+
text-align: right;
|
70
|
+
position: relative;
|
71
|
+
border-radius: 0 0 4px 4px;
|
72
|
+
border-top: 1px solid #ddd;
|
73
|
+
background: #eee
|
74
|
+
}
|
75
|
+
|
76
|
+
.cke_rtl .cke_dialog_footer {
|
77
|
+
text-align: left
|
78
|
+
}
|
79
|
+
|
80
|
+
.cke_hc .cke_dialog_footer {
|
81
|
+
outline: 0;
|
82
|
+
border-top: 1px solid #fff
|
83
|
+
}
|
84
|
+
|
85
|
+
.cke_dialog .cke_resizer {
|
86
|
+
margin-top: 28px
|
87
|
+
}
|
88
|
+
|
89
|
+
.cke_dialog .cke_resizer_rtl {
|
90
|
+
margin-left: 5px
|
91
|
+
}
|
92
|
+
|
93
|
+
.cke_dialog .cke_resizer_ltr {
|
94
|
+
margin-right: 5px
|
95
|
+
}
|
96
|
+
|
97
|
+
.cke_dialog_tabs {
|
98
|
+
height: 24px;
|
99
|
+
display: inline-block;
|
100
|
+
margin: 10px 0 0;
|
101
|
+
position: absolute;
|
102
|
+
z-index: 2;
|
103
|
+
left: 10px
|
104
|
+
}
|
105
|
+
|
106
|
+
.cke_rtl .cke_dialog_tabs {
|
107
|
+
right: 10px
|
108
|
+
}
|
109
|
+
|
110
|
+
a.cke_dialog_tab {
|
111
|
+
height: 16px;
|
112
|
+
padding: 4px 8px;
|
113
|
+
margin-right: 3px;
|
114
|
+
display: inline-block;
|
115
|
+
cursor: pointer;
|
116
|
+
line-height: 16px;
|
117
|
+
outline: 0;
|
118
|
+
color: #555;
|
119
|
+
border: 1px solid #ddd;
|
120
|
+
border-radius: 3px 3px 0 0;
|
121
|
+
background: #f3f3f3
|
122
|
+
}
|
123
|
+
|
124
|
+
.cke_rtl a.cke_dialog_tab {
|
125
|
+
margin-right: 0;
|
126
|
+
margin-left: 3px
|
127
|
+
}
|
128
|
+
|
129
|
+
a.cke_dialog_tab:hover {
|
130
|
+
background: #ddd;
|
131
|
+
text-decoration: none
|
132
|
+
}
|
133
|
+
|
134
|
+
a.cke_dialog_tab_selected {
|
135
|
+
background: #fff;
|
136
|
+
color: #333;
|
137
|
+
border-bottom-color: #fff;
|
138
|
+
cursor: default;
|
139
|
+
filter: none
|
140
|
+
}
|
141
|
+
|
142
|
+
a.cke_dialog_tab_selected:hover {
|
143
|
+
background: #fff
|
144
|
+
}
|
145
|
+
|
146
|
+
.cke_hc a.cke_dialog_tab:hover, .cke_hc a.cke_dialog_tab_selected {
|
147
|
+
border: 3px solid;
|
148
|
+
padding: 2px 6px
|
149
|
+
}
|
150
|
+
|
151
|
+
a.cke_dialog_tab_disabled {
|
152
|
+
color: #bababa;
|
153
|
+
cursor: default
|
154
|
+
}
|
155
|
+
|
156
|
+
.cke_dialog_tabs .cke_dialog_ui_input_select {
|
157
|
+
top: -7px !important
|
158
|
+
}
|
159
|
+
|
160
|
+
.cke_single_page .cke_dialog_tabs {
|
161
|
+
display: none
|
162
|
+
}
|
163
|
+
|
164
|
+
.cke_single_page .cke_dialog_contents {
|
165
|
+
padding-top: 5px;
|
166
|
+
margin-top: 0;
|
167
|
+
border-top: 0
|
168
|
+
}
|
169
|
+
|
170
|
+
.cke_dialog_close_button {
|
171
|
+
background-image: image_url('ckeditor-bootstrap/close.png');
|
172
|
+
background-repeat: no-repeat;
|
173
|
+
background-position: 0 0;
|
174
|
+
position: absolute;
|
175
|
+
cursor: pointer;
|
176
|
+
text-align: center;
|
177
|
+
height: 20px;
|
178
|
+
width: 20px;
|
179
|
+
top: 9px;
|
180
|
+
z-index: 5
|
181
|
+
}
|
182
|
+
|
183
|
+
.cke_hidpi .cke_dialog_close_button {
|
184
|
+
background-image: image_url('ckeditor-bootstrap/hidpi/close.png');
|
185
|
+
background-size: 16px
|
186
|
+
}
|
187
|
+
|
188
|
+
.cke_dialog_close_button span {
|
189
|
+
display: none
|
190
|
+
}
|
191
|
+
|
192
|
+
.cke_hc .cke_dialog_close_button span {
|
193
|
+
display: inline;
|
194
|
+
cursor: pointer;
|
195
|
+
font-weight: 700;
|
196
|
+
position: relative;
|
197
|
+
top: 3px
|
198
|
+
}
|
199
|
+
|
200
|
+
.cke_ltr .cke_dialog_close_button {
|
201
|
+
right: 5px
|
202
|
+
}
|
203
|
+
|
204
|
+
.cke_rtl .cke_dialog_close_button {
|
205
|
+
left: 6px
|
206
|
+
}
|
207
|
+
|
208
|
+
div.cke_disabled .cke_dialog_ui_labeled_content div * {
|
209
|
+
background-color: #ddd;
|
210
|
+
cursor: default
|
211
|
+
}
|
212
|
+
|
213
|
+
.cke_dialog_ui_hbox table, .cke_dialog_ui_vbox table {
|
214
|
+
margin: auto
|
215
|
+
}
|
216
|
+
|
217
|
+
.cke_dialog_ui_vbox {
|
218
|
+
margin-top: 5px
|
219
|
+
}
|
220
|
+
|
221
|
+
.cke_dialog_ui_vbox_child {
|
222
|
+
padding: 5px 0
|
223
|
+
}
|
224
|
+
|
225
|
+
.cke_dialog_ui_hbox {
|
226
|
+
width: 100%
|
227
|
+
}
|
228
|
+
|
229
|
+
.cke_dialog_ui_hbox_child, .cke_dialog_ui_hbox_first, .cke_dialog_ui_hbox_last {
|
230
|
+
vertical-align: top
|
231
|
+
}
|
232
|
+
|
233
|
+
.cke_dialog_ui_hbox_first > .cke_dialog_ui_html, .cke_dialog_ui_hbox_first > .cke_dialog_ui_labeled_label, .cke_dialog_ui_hbox_last > .cke_dialog_ui_html, .cke_dialog_ui_hbox_last > .cke_dialog_ui_labeled_label {
|
234
|
+
line-height: 30px
|
235
|
+
}
|
236
|
+
|
237
|
+
.cke_ltr .cke_dialog_ui_hbox_child, .cke_ltr .cke_dialog_ui_hbox_first {
|
238
|
+
padding-right: 10px
|
239
|
+
}
|
240
|
+
|
241
|
+
.cke_rtl .cke_dialog_ui_hbox_child, .cke_rtl .cke_dialog_ui_hbox_first {
|
242
|
+
padding-left: 10px
|
243
|
+
}
|
244
|
+
|
245
|
+
.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child, .cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first {
|
246
|
+
padding-right: 5px
|
247
|
+
}
|
248
|
+
|
249
|
+
.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child, .cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first {
|
250
|
+
padding-left: 5px;
|
251
|
+
padding-right: 0
|
252
|
+
}
|
253
|
+
|
254
|
+
.cke_hc div.cke_dialog_ui_input_file, .cke_hc div.cke_dialog_ui_input_password, .cke_hc div.cke_dialog_ui_input_select, .cke_hc div.cke_dialog_ui_input_text, .cke_hc div.cke_dialog_ui_input_textarea {
|
255
|
+
border: 1px solid
|
256
|
+
}
|
257
|
+
|
258
|
+
.cke_dialog_ui_text {
|
259
|
+
margin-bottom: 7px
|
260
|
+
}
|
261
|
+
|
262
|
+
.cke_dialog_ui_select {
|
263
|
+
height: auto !important;
|
264
|
+
margin-bottom: 7px
|
265
|
+
}
|
266
|
+
|
267
|
+
textarea.cke_dialog_ui_input_textarea {
|
268
|
+
overflow: auto;
|
269
|
+
resize: none
|
270
|
+
}
|
271
|
+
|
272
|
+
a.cke_dialog_ui_button {
|
273
|
+
display: inline-block;
|
274
|
+
*display: inline;
|
275
|
+
*zoom: 1;
|
276
|
+
padding: 3px 0;
|
277
|
+
margin: 0;
|
278
|
+
text-align: center;
|
279
|
+
color: #333;
|
280
|
+
vertical-align: middle;
|
281
|
+
cursor: pointer;
|
282
|
+
border: 1px solid #ddd;
|
283
|
+
border-radius: 4px;
|
284
|
+
background: #fff
|
285
|
+
}
|
286
|
+
|
287
|
+
a.cke_dialog_ui_button:active, a.cke_dialog_ui_button:focus, a.cke_dialog_ui_button:hover {
|
288
|
+
border-color: #aaa;
|
289
|
+
background-color: #eee;
|
290
|
+
text-decoration: none
|
291
|
+
}
|
292
|
+
|
293
|
+
.cke_dialog_page_contents a.cke_dialog_ui_button {
|
294
|
+
height: 22px;
|
295
|
+
line-height: 22px;
|
296
|
+
background-color: #f4f4f4
|
297
|
+
}
|
298
|
+
|
299
|
+
.cke_dialog_page_contents a.cke_dialog_ui_button:active, .cke_dialog_page_contents a.cke_dialog_ui_button:focus, .cke_dialog_page_contents a.cke_dialog_ui_button:hover {
|
300
|
+
background-color: #eee
|
301
|
+
}
|
302
|
+
|
303
|
+
span.cke_dialog_ui_button {
|
304
|
+
padding: 0 12px
|
305
|
+
}
|
306
|
+
|
307
|
+
.cke_hc a.cke_dialog_ui_button:active, .cke_hc a.cke_dialog_ui_button:focus, .cke_hc a.cke_dialog_ui_button:hover {
|
308
|
+
border: 3px solid;
|
309
|
+
padding-top: 1px;
|
310
|
+
padding-bottom: 1px
|
311
|
+
}
|
312
|
+
|
313
|
+
.cke_hc a.cke_dialog_ui_button:active span, .cke_hc a.cke_dialog_ui_button:focus span, .cke_hc a.cke_dialog_ui_button:hover span {
|
314
|
+
padding-left: 10px;
|
315
|
+
padding-right: 10px
|
316
|
+
}
|
317
|
+
|
318
|
+
.cke_dialog_footer_buttons a.cke_dialog_ui_button span {
|
319
|
+
color: inherit;
|
320
|
+
font-size: 12px;
|
321
|
+
line-height: 20px
|
322
|
+
}
|
323
|
+
|
324
|
+
a.cke_dialog_ui_button_ok {
|
325
|
+
color: #fff;
|
326
|
+
border-color: #2274c9;
|
327
|
+
background: #3f8edf
|
328
|
+
}
|
329
|
+
|
330
|
+
a.cke_dialog_ui_button_ok:active, a.cke_dialog_ui_button_ok:focus, a.cke_dialog_ui_button_ok:hover {
|
331
|
+
border-color: #1e68b4;
|
332
|
+
background: #2981db
|
333
|
+
}
|
334
|
+
|
335
|
+
a.cke_dialog_ui_button_cancel {
|
336
|
+
background-color: #fff
|
337
|
+
}
|
338
|
+
|
339
|
+
a.cke_dialog_ui_button_cancel:focus {
|
340
|
+
outline: 0
|
341
|
+
}
|
342
|
+
|
343
|
+
span.cke_dialog_ui_button {
|
344
|
+
cursor: pointer
|
345
|
+
}
|
346
|
+
|
347
|
+
.cke_dialog_footer_buttons {
|
348
|
+
display: inline-table;
|
349
|
+
margin: 10px;
|
350
|
+
width: auto;
|
351
|
+
position: relative;
|
352
|
+
vertical-align: middle
|
353
|
+
}
|
354
|
+
|
355
|
+
div.cke_dialog_ui_input_select {
|
356
|
+
display: table
|
357
|
+
}
|
358
|
+
|
359
|
+
select.cke_dialog_ui_input_select {
|
360
|
+
height: 30px;
|
361
|
+
line-height: 30px;
|
362
|
+
background-color: #fff;
|
363
|
+
padding: 4px 10px;
|
364
|
+
border: 1px solid #ddd;
|
365
|
+
outline: 0;
|
366
|
+
border-radius: 4px;
|
367
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
368
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
|
369
|
+
}
|
370
|
+
|
371
|
+
.cke_dialog_ui_input_file {
|
372
|
+
width: 100%;
|
373
|
+
height: 30px
|
374
|
+
}
|
375
|
+
|
376
|
+
.cke_hc .cke_dialog_ui_labeled_content input:focus, .cke_hc .cke_dialog_ui_labeled_content select:focus, .cke_hc .cke_dialog_ui_labeled_content textarea:focus {
|
377
|
+
outline: 1px dotted
|
378
|
+
}
|
379
|
+
|
380
|
+
.cke_dialog .cke_dark_background, .cke_dialog .cke_light_background {
|
381
|
+
background-color: #eee
|
382
|
+
}
|
383
|
+
|
384
|
+
.cke_dialog .cke_centered {
|
385
|
+
text-align: center
|
386
|
+
}
|
387
|
+
|
388
|
+
.cke_dialog a.cke_btn_reset {
|
389
|
+
float: right;
|
390
|
+
background: image_url('ckeditor-bootstrap/refresh.png') top left no-repeat;
|
391
|
+
width: 16px;
|
392
|
+
height: 16px;
|
393
|
+
border: 1px none;
|
394
|
+
font-size: 1px
|
395
|
+
}
|
396
|
+
|
397
|
+
.cke_dialog a.cke_btn_locked, .cke_dialog a.cke_btn_unlocked {
|
398
|
+
float: left;
|
399
|
+
width: 16px;
|
400
|
+
height: 16px;
|
401
|
+
background-repeat: no-repeat;
|
402
|
+
border: none 1px;
|
403
|
+
font-size: 1px
|
404
|
+
}
|
405
|
+
|
406
|
+
.cke_dialog a.cke_btn_locked {
|
407
|
+
background-image: image_url('ckeditor-bootstrap/lock.png');
|
408
|
+
}
|
409
|
+
|
410
|
+
.cke_dialog a.cke_btn_locked .cke_icon {
|
411
|
+
display: none
|
412
|
+
}
|
413
|
+
|
414
|
+
.cke_dialog a.cke_btn_unlocked {
|
415
|
+
background-image: image_url('ckeditor-bootstrap/lock-open.png');
|
416
|
+
}
|
417
|
+
|
418
|
+
.cke_dialog .cke_btn_over {
|
419
|
+
border: outset 1px;
|
420
|
+
cursor: pointer
|
421
|
+
}
|
422
|
+
|
423
|
+
.cke_hidpi .cke_dialog a.cke_btn_reset {
|
424
|
+
background-size: 16px;
|
425
|
+
background-image: image_url('ckeditor-bootstrap/hidpi/refresh.png');
|
426
|
+
}
|
427
|
+
|
428
|
+
.cke_hidpi .cke_dialog a.cke_btn_locked, .cke_hidpi .cke_dialog a.cke_btn_unlocked {
|
429
|
+
background-size: 16px
|
430
|
+
}
|
431
|
+
|
432
|
+
.cke_hidpi .cke_dialog a.cke_btn_locked {
|
433
|
+
background-image: image_url('ckeditor-bootstrap/hidpi/lock.png');
|
434
|
+
}
|
435
|
+
|
436
|
+
.cke_hidpi .cke_dialog a.cke_btn_unlocked {
|
437
|
+
background-image: image_url('ckeditor-bootstrap/hidpi/lock-open.png');
|
438
|
+
}
|
439
|
+
|
440
|
+
.cke_rtl .cke_dialog a.cke_btn_reset {
|
441
|
+
float: left
|
442
|
+
}
|
443
|
+
|
444
|
+
.cke_rtl .cke_dialog a.cke_btn_locked, .cke_rtl .cke_dialog a.cke_btn_unlocked {
|
445
|
+
float: right
|
446
|
+
}
|
447
|
+
|
448
|
+
.cke_dialog .FlashPreviewBox, .cke_dialog .ImagePreviewBox {
|
449
|
+
border: 1px solid #aaa;
|
450
|
+
border-radius: 4px;
|
451
|
+
padding: 6px 10px;
|
452
|
+
margin-top: 5px;
|
453
|
+
background-color: #fff
|
454
|
+
}
|
455
|
+
|
456
|
+
.cke_dialog .ImagePreviewBox {
|
457
|
+
overflow: scroll;
|
458
|
+
height: 205px;
|
459
|
+
width: 300px
|
460
|
+
}
|
461
|
+
|
462
|
+
.cke_dialog .ImagePreviewBox table td {
|
463
|
+
white-space: normal
|
464
|
+
}
|
465
|
+
|
466
|
+
.cke_dialog .FlashPreviewBox {
|
467
|
+
white-space: normal;
|
468
|
+
overflow: auto;
|
469
|
+
height: 160px;
|
470
|
+
width: 390px
|
471
|
+
}
|
472
|
+
|
473
|
+
.cke_dialog .ImagePreviewLoader {
|
474
|
+
position: absolute;
|
475
|
+
white-space: normal;
|
476
|
+
overflow: hidden;
|
477
|
+
height: 160px;
|
478
|
+
width: 230px;
|
479
|
+
margin: 2px;
|
480
|
+
padding: 2px;
|
481
|
+
opacity: .9;
|
482
|
+
filter: alpha(opacity=90);
|
483
|
+
background-color: #e4e4e4
|
484
|
+
}
|
485
|
+
|
486
|
+
.cke_dialog .cke_pastetext {
|
487
|
+
width: 346px;
|
488
|
+
height: 170px
|
489
|
+
}
|
490
|
+
|
491
|
+
.cke_dialog .cke_pastetext textarea {
|
492
|
+
width: 340px;
|
493
|
+
height: 170px;
|
494
|
+
resize: none
|
495
|
+
}
|
496
|
+
|
497
|
+
.cke_dialog iframe.cke_pasteframe {
|
498
|
+
width: 346px;
|
499
|
+
height: 130px;
|
500
|
+
background-color: #fff;
|
501
|
+
border: 1px solid #aeb3b9;
|
502
|
+
border-radius: 4px
|
503
|
+
}
|
504
|
+
|
505
|
+
.cke_dialog .cke_hand {
|
506
|
+
cursor: pointer
|
507
|
+
}
|
508
|
+
|
509
|
+
.cke_disabled {
|
510
|
+
color: #a0a0a0
|
511
|
+
}
|
512
|
+
|
513
|
+
.cke_dialog_body .cke_label {
|
514
|
+
display: none
|
515
|
+
}
|
516
|
+
|
517
|
+
.cke_dialog_body label {
|
518
|
+
display: inline-block;
|
519
|
+
margin-bottom: 3px;
|
520
|
+
cursor: default
|
521
|
+
}
|
522
|
+
|
523
|
+
.cke_dialog_body label.cke_required {
|
524
|
+
font-weight: 700
|
525
|
+
}
|
526
|
+
|
527
|
+
.cke_dialog_ui_html {
|
528
|
+
line-height: 150%
|
529
|
+
}
|
530
|
+
|
531
|
+
a.cke_smile {
|
532
|
+
overflow: hidden;
|
533
|
+
display: block;
|
534
|
+
text-align: center;
|
535
|
+
padding: .3em 0
|
536
|
+
}
|
537
|
+
|
538
|
+
a.cke_smile img {
|
539
|
+
vertical-align: middle
|
540
|
+
}
|
541
|
+
|
542
|
+
a.cke_specialchar {
|
543
|
+
cursor: inherit;
|
544
|
+
display: block;
|
545
|
+
height: 1.25em;
|
546
|
+
padding: .2em .3em;
|
547
|
+
text-align: center
|
548
|
+
}
|
549
|
+
|
550
|
+
a.cke_smile, a.cke_specialchar {
|
551
|
+
background-color: #eee;
|
552
|
+
border: 1px solid transparent;
|
553
|
+
vertical-align: top
|
554
|
+
}
|
555
|
+
|
556
|
+
a.cke_smile:active, a.cke_smile:focus, a.cke_smile:hover, a.cke_specialchar:active, a.cke_specialchar:focus, a.cke_specialchar:hover {
|
557
|
+
background: #fff;
|
558
|
+
outline: 0
|
559
|
+
}
|
560
|
+
|
561
|
+
a.cke_smile:hover, a.cke_specialchar:hover {
|
562
|
+
border-color: #aaa
|
563
|
+
}
|
564
|
+
|
565
|
+
a.cke_smile:active, a.cke_smile:focus, a.cke_specialchar:active, a.cke_specialchar:focus {
|
566
|
+
border-color: #428bca
|
567
|
+
}
|
568
|
+
|
569
|
+
.cke_dialog_contents a.colorChooser {
|
570
|
+
display: block;
|
571
|
+
margin-top: 6px;
|
572
|
+
margin-left: 10px;
|
573
|
+
width: 80px
|
574
|
+
}
|
575
|
+
|
576
|
+
.cke_rtl .cke_dialog_contents a.colorChooser {
|
577
|
+
margin-right: 10px
|
578
|
+
}
|
579
|
+
|
580
|
+
.cke_dialog_ui_checkbox {
|
581
|
+
display: inline-block;
|
582
|
+
margin-bottom: 5px
|
583
|
+
}
|
584
|
+
|
585
|
+
.cke_btn_over, .cke_dialog_ui_checkbox_input:focus, .cke_dialog_ui_radio_input:focus {
|
586
|
+
outline: 1px dotted #696969
|
587
|
+
}
|
588
|
+
|
589
|
+
.cke_iframe_shim {
|
590
|
+
display: block;
|
591
|
+
position: absolute;
|
592
|
+
top: 0;
|
593
|
+
left: 0;
|
594
|
+
z-index: -1;
|
595
|
+
filter: alpha(opacity=0);
|
596
|
+
width: 100%;
|
597
|
+
height: 100%
|
598
|
+
}
|