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,1613 @@
|
|
1
|
+
.cke_reset {
|
2
|
+
margin: 0;
|
3
|
+
padding: 0;
|
4
|
+
border: 0;
|
5
|
+
background: 0;
|
6
|
+
text-decoration: none;
|
7
|
+
width: auto;
|
8
|
+
height: auto;
|
9
|
+
vertical-align: baseline;
|
10
|
+
box-sizing: content-box;
|
11
|
+
-moz-box-sizing: content-box;
|
12
|
+
-webkit-box-sizing: content-box;
|
13
|
+
position: static;
|
14
|
+
-webkit-transition: none;
|
15
|
+
-moz-transition: none;
|
16
|
+
-ms-transition: none;
|
17
|
+
transition: none
|
18
|
+
}
|
19
|
+
|
20
|
+
.cke_reset_all, .cke_reset_all * {
|
21
|
+
margin: 0;
|
22
|
+
padding: 0;
|
23
|
+
border: 0;
|
24
|
+
background: 0;
|
25
|
+
text-decoration: none;
|
26
|
+
width: auto;
|
27
|
+
height: auto;
|
28
|
+
vertical-align: baseline;
|
29
|
+
box-sizing: content-box;
|
30
|
+
-moz-box-sizing: content-box;
|
31
|
+
-webkit-box-sizing: content-box;
|
32
|
+
position: static;
|
33
|
+
-webkit-transition: none;
|
34
|
+
-moz-transition: none;
|
35
|
+
-ms-transition: none;
|
36
|
+
transition: none;
|
37
|
+
border-collapse: collapse;
|
38
|
+
font: normal normal normal 12px Arial, Helvetica, Tahoma, Verdana, Sans-Serif;
|
39
|
+
color: #333;
|
40
|
+
text-align: left;
|
41
|
+
white-space: nowrap;
|
42
|
+
cursor: auto;
|
43
|
+
float: none
|
44
|
+
}
|
45
|
+
|
46
|
+
.cke_reset_all .cke_rtl * {
|
47
|
+
text-align: right
|
48
|
+
}
|
49
|
+
|
50
|
+
.cke_reset_all iframe {
|
51
|
+
vertical-align: inherit
|
52
|
+
}
|
53
|
+
|
54
|
+
.cke_reset_all textarea {
|
55
|
+
white-space: pre
|
56
|
+
}
|
57
|
+
|
58
|
+
.cke_reset_all input[type=password], .cke_reset_all input[type=text], .cke_reset_all textarea {
|
59
|
+
cursor: text
|
60
|
+
}
|
61
|
+
|
62
|
+
.cke_reset_all input[type=password][disabled], .cke_reset_all input[type=text][disabled], .cke_reset_all textarea[disabled] {
|
63
|
+
cursor: default
|
64
|
+
}
|
65
|
+
|
66
|
+
.cke_reset_all fieldset {
|
67
|
+
padding: 10px;
|
68
|
+
margin-top: 10px;
|
69
|
+
border: 1px solid #ddd
|
70
|
+
}
|
71
|
+
|
72
|
+
.cke_reset_all fieldset legend {
|
73
|
+
padding: 0 5px
|
74
|
+
}
|
75
|
+
|
76
|
+
.cke_reset_all select {
|
77
|
+
box-sizing: border-box;
|
78
|
+
-moz-box-sizing: border-box;
|
79
|
+
-webkit-box-sizing: border-box
|
80
|
+
}
|
81
|
+
|
82
|
+
.cke_chrome {
|
83
|
+
display: block;
|
84
|
+
border: 1px solid #ddd;
|
85
|
+
border-radius: 4px;
|
86
|
+
padding: 0 3px;
|
87
|
+
background: #eee
|
88
|
+
}
|
89
|
+
|
90
|
+
.cke_inner {
|
91
|
+
display: block;
|
92
|
+
-webkit-touch-callout: none;
|
93
|
+
background: 0;
|
94
|
+
padding: 0
|
95
|
+
}
|
96
|
+
|
97
|
+
.cke_float {
|
98
|
+
border: 0
|
99
|
+
}
|
100
|
+
|
101
|
+
.cke_float .cke_inner {
|
102
|
+
padding-bottom: 0
|
103
|
+
}
|
104
|
+
|
105
|
+
.cke_float .cke_top {
|
106
|
+
border: 1px solid #ddd
|
107
|
+
}
|
108
|
+
|
109
|
+
.cke_bottom, .cke_contents, .cke_top {
|
110
|
+
display: block;
|
111
|
+
overflow: hidden
|
112
|
+
}
|
113
|
+
|
114
|
+
.cke_bottom, .cke_top {
|
115
|
+
padding: 3px 0 0;
|
116
|
+
background: #eee
|
117
|
+
}
|
118
|
+
|
119
|
+
.cke_top {
|
120
|
+
white-space: normal
|
121
|
+
}
|
122
|
+
|
123
|
+
.cke_contents {
|
124
|
+
background-color: #fff;
|
125
|
+
border: 1px solid #ddd;
|
126
|
+
border-radius: 4px
|
127
|
+
}
|
128
|
+
|
129
|
+
.cke_bottom {
|
130
|
+
position: relative
|
131
|
+
}
|
132
|
+
|
133
|
+
.cke_browser_ios .cke_contents {
|
134
|
+
overflow-y: auto;
|
135
|
+
-webkit-overflow-scrolling: touch
|
136
|
+
}
|
137
|
+
|
138
|
+
.cke_resizer {
|
139
|
+
width: 0;
|
140
|
+
height: 0;
|
141
|
+
overflow: hidden;
|
142
|
+
border-width: 10px 10px 0 0;
|
143
|
+
border-color: transparent #555 transparent transparent;
|
144
|
+
border-style: dashed solid dashed dashed;
|
145
|
+
font-size: 0;
|
146
|
+
vertical-align: bottom;
|
147
|
+
margin-top: 6px;
|
148
|
+
margin-bottom: 2px
|
149
|
+
}
|
150
|
+
|
151
|
+
.cke_hc .cke_resizer {
|
152
|
+
font-size: 15px;
|
153
|
+
width: auto;
|
154
|
+
height: auto;
|
155
|
+
border-width: 0
|
156
|
+
}
|
157
|
+
|
158
|
+
.cke_resizer_ltr {
|
159
|
+
cursor: se-resize;
|
160
|
+
float: right;
|
161
|
+
margin-right: -4px
|
162
|
+
}
|
163
|
+
|
164
|
+
.cke_resizer_rtl {
|
165
|
+
border-width: 10px 0 0 10px;
|
166
|
+
border-color: transparent transparent transparent #aaa;
|
167
|
+
border-style: dashed dashed dashed solid;
|
168
|
+
cursor: sw-resize;
|
169
|
+
float: left;
|
170
|
+
margin-left: -4px;
|
171
|
+
right: auto
|
172
|
+
}
|
173
|
+
|
174
|
+
.cke_wysiwyg_div {
|
175
|
+
display: block;
|
176
|
+
height: 100%;
|
177
|
+
overflow: auto;
|
178
|
+
padding: 0 8px;
|
179
|
+
outline-style: none;
|
180
|
+
-moz-box-sizing: border-box;
|
181
|
+
-webkit-box-sizing: border-box;
|
182
|
+
box-sizing: border-box
|
183
|
+
}
|
184
|
+
|
185
|
+
.cke_panel {
|
186
|
+
visibility: visible;
|
187
|
+
width: 120px;
|
188
|
+
height: 100px;
|
189
|
+
overflow: hidden;
|
190
|
+
margin-top: 5px;
|
191
|
+
background-color: #fff;
|
192
|
+
border: 1px solid #aaa;
|
193
|
+
border-radius: 4px
|
194
|
+
}
|
195
|
+
|
196
|
+
.cke_menu_panel {
|
197
|
+
padding: 0;
|
198
|
+
margin: 0
|
199
|
+
}
|
200
|
+
|
201
|
+
.cke_combopanel {
|
202
|
+
width: 150px;
|
203
|
+
height: 178px
|
204
|
+
}
|
205
|
+
|
206
|
+
.cke_panel_frame {
|
207
|
+
width: 100%;
|
208
|
+
height: 100%;
|
209
|
+
font-size: 12px;
|
210
|
+
overflow: auto;
|
211
|
+
overflow-x: hidden
|
212
|
+
}
|
213
|
+
|
214
|
+
.cke_panel_container {
|
215
|
+
overflow-y: auto;
|
216
|
+
overflow-x: hidden
|
217
|
+
}
|
218
|
+
|
219
|
+
.cke_panel_list {
|
220
|
+
list-style-type: none;
|
221
|
+
margin: 3px;
|
222
|
+
padding: 0;
|
223
|
+
white-space: nowrap
|
224
|
+
}
|
225
|
+
|
226
|
+
.cke_panel_listItem {
|
227
|
+
margin: 0;
|
228
|
+
padding-bottom: 1px
|
229
|
+
}
|
230
|
+
|
231
|
+
.cke_panel_listItem a {
|
232
|
+
padding: 3px 4px;
|
233
|
+
display: block;
|
234
|
+
border: 1px solid #fff;
|
235
|
+
color: inherit !important;
|
236
|
+
text-decoration: none;
|
237
|
+
overflow: hidden;
|
238
|
+
text-overflow: ellipsis;
|
239
|
+
border-radius: 2px
|
240
|
+
}
|
241
|
+
|
242
|
+
.cke_panel_listItem a:active, .cke_panel_listItem a:focus, .cke_panel_listItem a:hover {
|
243
|
+
background-color: #e1edf7
|
244
|
+
}
|
245
|
+
|
246
|
+
* html .cke_panel_listItem a {
|
247
|
+
width: 100%;
|
248
|
+
color: #000
|
249
|
+
}
|
250
|
+
|
251
|
+
:first-child + html .cke_panel_listItem a {
|
252
|
+
color: #000
|
253
|
+
}
|
254
|
+
|
255
|
+
.cke_panel_listItem.cke_selected a {
|
256
|
+
background-color: #92bce0;
|
257
|
+
outline: 0
|
258
|
+
}
|
259
|
+
|
260
|
+
.cke_hc .cke_panel_listItem a {
|
261
|
+
border-style: none
|
262
|
+
}
|
263
|
+
|
264
|
+
.cke_hc .cke_panel_listItem a:active, .cke_hc .cke_panel_listItem a:focus, .cke_hc .cke_panel_listItem a:hover {
|
265
|
+
border: 2px solid;
|
266
|
+
padding: 1px 2px
|
267
|
+
}
|
268
|
+
|
269
|
+
.cke_panel_grouptitle {
|
270
|
+
font-size: 11px;
|
271
|
+
font-weight: 700;
|
272
|
+
white-space: nowrap;
|
273
|
+
margin: 0;
|
274
|
+
padding: 6px;
|
275
|
+
color: #474747;
|
276
|
+
border-bottom: 1px solid #aaa;
|
277
|
+
background: #eee
|
278
|
+
}
|
279
|
+
|
280
|
+
.cke_panel_grouptitle:first-child {
|
281
|
+
border-radius: 4px 4px 0 0
|
282
|
+
}
|
283
|
+
|
284
|
+
.cke_panel_listItem h1, .cke_panel_listItem h2, .cke_panel_listItem h3, .cke_panel_listItem h4, .cke_panel_listItem h5, .cke_panel_listItem h6, .cke_panel_listItem p, .cke_panel_listItem pre {
|
285
|
+
margin-top: 0;
|
286
|
+
margin-bottom: 0
|
287
|
+
}
|
288
|
+
|
289
|
+
.cke_colorblock {
|
290
|
+
padding: 3px;
|
291
|
+
font-size: 11px;
|
292
|
+
font-family: 'Microsoft Sans Serif', Tahoma, Arial, Verdana, Sans-Serif
|
293
|
+
}
|
294
|
+
|
295
|
+
.cke_colorblock, .cke_colorblock a {
|
296
|
+
text-decoration: none;
|
297
|
+
color: #000
|
298
|
+
}
|
299
|
+
|
300
|
+
span.cke_colorbox {
|
301
|
+
width: 10px;
|
302
|
+
height: 10px;
|
303
|
+
border: 1px solid #aaa;
|
304
|
+
float: left
|
305
|
+
}
|
306
|
+
|
307
|
+
.cke_rtl span.cke_colorbox {
|
308
|
+
float: right
|
309
|
+
}
|
310
|
+
|
311
|
+
a.cke_colorbox {
|
312
|
+
border: 1px solid #fff;
|
313
|
+
padding: 2px;
|
314
|
+
float: left;
|
315
|
+
width: 12px;
|
316
|
+
height: 12px;
|
317
|
+
border-radius: 2px
|
318
|
+
}
|
319
|
+
|
320
|
+
.cke_rtl a.cke_colorbox {
|
321
|
+
float: right
|
322
|
+
}
|
323
|
+
|
324
|
+
a:active.cke_colorbox, a:focus.cke_colorbox, a:hover.cke_colorbox {
|
325
|
+
border: 1px solid #ddd;
|
326
|
+
background-color: #eee
|
327
|
+
}
|
328
|
+
|
329
|
+
a.cke_colorauto, a.cke_colormore {
|
330
|
+
border: 1px solid #fff;
|
331
|
+
padding: 2px;
|
332
|
+
display: block;
|
333
|
+
cursor: pointer
|
334
|
+
}
|
335
|
+
|
336
|
+
a:active.cke_colorauto, a:active.cke_colormore, a:focus.cke_colorauto, a:focus.cke_colormore, a:hover.cke_colorauto, a:hover.cke_colormore {
|
337
|
+
border: 1px solid #ddd;
|
338
|
+
background-color: #eee
|
339
|
+
}
|
340
|
+
|
341
|
+
.cke_toolbar {
|
342
|
+
float: left
|
343
|
+
}
|
344
|
+
|
345
|
+
.cke_rtl .cke_toolbar {
|
346
|
+
float: right
|
347
|
+
}
|
348
|
+
|
349
|
+
.cke_toolgroup {
|
350
|
+
float: left;
|
351
|
+
margin: 0 6px 3px 0;
|
352
|
+
padding: 2px;
|
353
|
+
border: 1px solid #ddd;
|
354
|
+
border-radius: 4px;
|
355
|
+
background: #fff
|
356
|
+
}
|
357
|
+
|
358
|
+
.cke_hc .cke_toolgroup {
|
359
|
+
border: 0;
|
360
|
+
margin-right: 10px;
|
361
|
+
margin-bottom: 10px
|
362
|
+
}
|
363
|
+
|
364
|
+
.cke_rtl .cke_toolgroup :first-child {
|
365
|
+
border-radius: 0 4px 4px 0
|
366
|
+
}
|
367
|
+
|
368
|
+
.cke_rtl .cke_toolgroup :last-child {
|
369
|
+
border-radius: 4px 0 0 4px
|
370
|
+
}
|
371
|
+
|
372
|
+
.cke_rtl .cke_toolgroup {
|
373
|
+
float: right;
|
374
|
+
margin-left: 6px;
|
375
|
+
margin-right: 0
|
376
|
+
}
|
377
|
+
|
378
|
+
a.cke_button {
|
379
|
+
display: inline-block;
|
380
|
+
height: 18px;
|
381
|
+
padding: 2px 4px;
|
382
|
+
outline: 0;
|
383
|
+
cursor: default;
|
384
|
+
float: left;
|
385
|
+
border: 0;
|
386
|
+
border-radius: 2px
|
387
|
+
}
|
388
|
+
|
389
|
+
.cke_rtl .cke_button {
|
390
|
+
float: right
|
391
|
+
}
|
392
|
+
|
393
|
+
.cke_hc .cke_button {
|
394
|
+
border: 1px solid #000;
|
395
|
+
padding: 3px 5px;
|
396
|
+
margin: -2px 4px 0 -2px
|
397
|
+
}
|
398
|
+
|
399
|
+
.cke_button_on {
|
400
|
+
background: #92bce0
|
401
|
+
}
|
402
|
+
|
403
|
+
.cke_hc .cke_button_on, .cke_hc a.cke_button_disabled:active, .cke_hc a.cke_button_disabled:focus, .cke_hc a.cke_button_disabled:hover, .cke_hc a.cke_button_off:active, .cke_hc a.cke_button_off:focus, .cke_hc a.cke_button_off:hover {
|
404
|
+
border-width: 3px;
|
405
|
+
padding: 1px 3px
|
406
|
+
}
|
407
|
+
|
408
|
+
.cke_button_disabled .cke_button_icon {
|
409
|
+
opacity: .3
|
410
|
+
}
|
411
|
+
|
412
|
+
.cke_hc .cke_button_disabled {
|
413
|
+
opacity: .5
|
414
|
+
}
|
415
|
+
|
416
|
+
a.cke_button_disabled:active, a.cke_button_disabled:focus, a.cke_button_disabled:hover, a.cke_button_off:active, a.cke_button_off:focus, a.cke_button_off:hover {
|
417
|
+
background: #e1edf7
|
418
|
+
}
|
419
|
+
|
420
|
+
.cke_button_icon {
|
421
|
+
cursor: inherit;
|
422
|
+
background-repeat: no-repeat;
|
423
|
+
margin-top: 1px;
|
424
|
+
width: 16px;
|
425
|
+
height: 16px;
|
426
|
+
float: left;
|
427
|
+
display: inline-block
|
428
|
+
}
|
429
|
+
|
430
|
+
.cke_rtl .cke_button_icon {
|
431
|
+
float: right
|
432
|
+
}
|
433
|
+
|
434
|
+
.cke_hc .cke_button_icon {
|
435
|
+
display: none
|
436
|
+
}
|
437
|
+
|
438
|
+
.cke_button_label {
|
439
|
+
display: none;
|
440
|
+
padding-left: 3px;
|
441
|
+
margin-top: 1px;
|
442
|
+
line-height: 18px;
|
443
|
+
vertical-align: middle;
|
444
|
+
float: left;
|
445
|
+
cursor: default;
|
446
|
+
color: #555
|
447
|
+
}
|
448
|
+
|
449
|
+
.cke_rtl .cke_button_label {
|
450
|
+
padding-right: 3px;
|
451
|
+
padding-left: 0;
|
452
|
+
float: right
|
453
|
+
}
|
454
|
+
|
455
|
+
.cke_hc .cke_button_label {
|
456
|
+
padding: 0;
|
457
|
+
display: inline-block;
|
458
|
+
font-size: 12px
|
459
|
+
}
|
460
|
+
|
461
|
+
.cke_button_arrow {
|
462
|
+
display: inline-block;
|
463
|
+
margin: 8px 0 0 1px;
|
464
|
+
width: 0;
|
465
|
+
height: 0;
|
466
|
+
cursor: default;
|
467
|
+
vertical-align: top;
|
468
|
+
border-left: 3px solid transparent;
|
469
|
+
border-right: 3px solid transparent;
|
470
|
+
border-top: 3px solid #474747
|
471
|
+
}
|
472
|
+
|
473
|
+
.cke_rtl .cke_button_arrow {
|
474
|
+
margin-right: 5px;
|
475
|
+
margin-left: 0
|
476
|
+
}
|
477
|
+
|
478
|
+
.cke_hc .cke_button_arrow {
|
479
|
+
font-size: 10px;
|
480
|
+
margin: 3px -2px 0 3px;
|
481
|
+
width: auto;
|
482
|
+
border: 0
|
483
|
+
}
|
484
|
+
|
485
|
+
.cke_toolbar_separator {
|
486
|
+
float: left;
|
487
|
+
background-color: #ddd;
|
488
|
+
margin: 4px 2px 0;
|
489
|
+
height: 16px;
|
490
|
+
width: 1px
|
491
|
+
}
|
492
|
+
|
493
|
+
.cke_rtl .cke_toolbar_separator {
|
494
|
+
float: right
|
495
|
+
}
|
496
|
+
|
497
|
+
.cke_hc .cke_toolbar_separator {
|
498
|
+
width: 0;
|
499
|
+
border-left: 1px solid;
|
500
|
+
margin: 1px 5px 0 0
|
501
|
+
}
|
502
|
+
|
503
|
+
.cke_toolbar_break {
|
504
|
+
display: block;
|
505
|
+
clear: left
|
506
|
+
}
|
507
|
+
|
508
|
+
.cke_rtl .cke_toolbar_break {
|
509
|
+
clear: right
|
510
|
+
}
|
511
|
+
|
512
|
+
.cke_toolbox_collapser {
|
513
|
+
width: 12px;
|
514
|
+
height: 11px;
|
515
|
+
float: right;
|
516
|
+
margin: 11px 0 0;
|
517
|
+
font-size: 0;
|
518
|
+
cursor: default;
|
519
|
+
text-align: center;
|
520
|
+
border: 1px solid #a6a6a6;
|
521
|
+
border-bottom-color: #979797;
|
522
|
+
border-radius: 4px;
|
523
|
+
background: #e4e4e4
|
524
|
+
}
|
525
|
+
|
526
|
+
.cke_toolbox_collapser:hover {
|
527
|
+
background: #ccc
|
528
|
+
}
|
529
|
+
|
530
|
+
.cke_toolbox_collapser.cke_toolbox_collapser_min {
|
531
|
+
margin: 0 2px 4px
|
532
|
+
}
|
533
|
+
|
534
|
+
.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow {
|
535
|
+
margin-top: 4px;
|
536
|
+
border-bottom-color: transparent;
|
537
|
+
border-top-color: #474747
|
538
|
+
}
|
539
|
+
|
540
|
+
.cke_toolbox_collapser .cke_arrow {
|
541
|
+
display: inline-block;
|
542
|
+
height: 0;
|
543
|
+
width: 0;
|
544
|
+
font-size: 0;
|
545
|
+
margin-top: 1px;
|
546
|
+
border-left: 3px solid transparent;
|
547
|
+
border-right: 3px solid transparent;
|
548
|
+
border-bottom: 3px solid #474747;
|
549
|
+
border-top: 3px solid transparent
|
550
|
+
}
|
551
|
+
|
552
|
+
.cke_rtl .cke_toolbox_collapser {
|
553
|
+
float: left
|
554
|
+
}
|
555
|
+
|
556
|
+
.cke_hc .cke_toolbox_collapser .cke_arrow {
|
557
|
+
font-size: 8px;
|
558
|
+
width: auto;
|
559
|
+
border: 0;
|
560
|
+
margin-top: 0;
|
561
|
+
margin-right: 2px
|
562
|
+
}
|
563
|
+
|
564
|
+
.cke_menubutton {
|
565
|
+
display: block
|
566
|
+
}
|
567
|
+
|
568
|
+
.cke_button_icon {
|
569
|
+
opacity: .8
|
570
|
+
}
|
571
|
+
|
572
|
+
.cke_menuitem span {
|
573
|
+
cursor: default
|
574
|
+
}
|
575
|
+
|
576
|
+
.cke_menubutton:active, .cke_menubutton:focus, .cke_menubutton:hover {
|
577
|
+
display: block
|
578
|
+
}
|
579
|
+
|
580
|
+
.cke_hc .cke_menubutton {
|
581
|
+
padding: 2px
|
582
|
+
}
|
583
|
+
|
584
|
+
.cke_hc .cke_menubutton:active, .cke_hc .cke_menubutton:focus, .cke_hc .cke_menubutton:hover {
|
585
|
+
border: 2px solid;
|
586
|
+
padding: 0
|
587
|
+
}
|
588
|
+
|
589
|
+
.cke_menubutton_inner {
|
590
|
+
display: table-row
|
591
|
+
}
|
592
|
+
|
593
|
+
.cke_menuarrow, .cke_menubutton_icon, .cke_menubutton_label {
|
594
|
+
display: table-cell
|
595
|
+
}
|
596
|
+
|
597
|
+
.cke_menubutton_icon {
|
598
|
+
background-color: #d7d8d7;
|
599
|
+
opacity: .7;
|
600
|
+
filter: alpha(opacity=70);
|
601
|
+
padding: 4px
|
602
|
+
}
|
603
|
+
|
604
|
+
.cke_hc .cke_menubutton_icon {
|
605
|
+
height: 16px;
|
606
|
+
width: 0;
|
607
|
+
padding: 4px 0
|
608
|
+
}
|
609
|
+
|
610
|
+
.cke_menubutton:active .cke_menubutton_icon, .cke_menubutton:focus .cke_menubutton_icon, .cke_menubutton:hover .cke_menubutton_icon {
|
611
|
+
background-color: #d0d2d0
|
612
|
+
}
|
613
|
+
|
614
|
+
.cke_menubutton_disabled:active .cke_menubutton_icon, .cke_menubutton_disabled:focus .cke_menubutton_icon, .cke_menubutton_disabled:hover .cke_menubutton_icon {
|
615
|
+
opacity: .3;
|
616
|
+
filter: alpha(opacity=30)
|
617
|
+
}
|
618
|
+
|
619
|
+
.cke_menubutton_label {
|
620
|
+
padding: 0 5px;
|
621
|
+
background-color: transparent;
|
622
|
+
width: 100%;
|
623
|
+
vertical-align: middle
|
624
|
+
}
|
625
|
+
|
626
|
+
.cke_menubutton_disabled .cke_menubutton_label {
|
627
|
+
opacity: .3;
|
628
|
+
filter: alpha(opacity=30)
|
629
|
+
}
|
630
|
+
|
631
|
+
.cke_menubutton_on {
|
632
|
+
border: 1px solid #dedede;
|
633
|
+
background-color: #f2f2f2
|
634
|
+
}
|
635
|
+
|
636
|
+
.cke_menubutton_on .cke_menubutton_icon {
|
637
|
+
padding-right: 3px
|
638
|
+
}
|
639
|
+
|
640
|
+
.cke_menubutton:active, .cke_menubutton:focus, .cke_menubutton:hover {
|
641
|
+
background-color: #eff0ef
|
642
|
+
}
|
643
|
+
|
644
|
+
.cke_panel_frame .cke_menubutton_label {
|
645
|
+
display: none
|
646
|
+
}
|
647
|
+
|
648
|
+
.cke_menuseparator {
|
649
|
+
background-color: #d3d3d3;
|
650
|
+
height: 1px;
|
651
|
+
filter: alpha(opacity=70);
|
652
|
+
opacity: .7
|
653
|
+
}
|
654
|
+
|
655
|
+
.cke_menuarrow {
|
656
|
+
background-image: image_url('ckeditor-bootstrap/arrow.png');
|
657
|
+
background-position: 0 10px;
|
658
|
+
background-repeat: no-repeat;
|
659
|
+
padding: 0 5px
|
660
|
+
}
|
661
|
+
|
662
|
+
.cke_menuarrow span {
|
663
|
+
display: none
|
664
|
+
}
|
665
|
+
|
666
|
+
.cke_rtl .cke_menuarrow {
|
667
|
+
background-position: 5px -13px;
|
668
|
+
background-repeat: no-repeat
|
669
|
+
}
|
670
|
+
|
671
|
+
.cke_hc .cke_menuarrow span {
|
672
|
+
vertical-align: middle;
|
673
|
+
display: inline
|
674
|
+
}
|
675
|
+
|
676
|
+
.cke_combo {
|
677
|
+
display: inline-block;
|
678
|
+
float: left
|
679
|
+
}
|
680
|
+
|
681
|
+
.cke_rtl .cke_combo {
|
682
|
+
float: right
|
683
|
+
}
|
684
|
+
|
685
|
+
.cke_hc .cke_combo {
|
686
|
+
margin-top: -2px
|
687
|
+
}
|
688
|
+
|
689
|
+
.cke_combo_label {
|
690
|
+
display: none;
|
691
|
+
float: left;
|
692
|
+
line-height: 26px;
|
693
|
+
vertical-align: top;
|
694
|
+
margin-right: 5px
|
695
|
+
}
|
696
|
+
|
697
|
+
.cke_rtl .cke_combo_label {
|
698
|
+
float: right;
|
699
|
+
margin-left: 5px;
|
700
|
+
margin-right: 0
|
701
|
+
}
|
702
|
+
|
703
|
+
.cke_combo_button {
|
704
|
+
display: inline-block;
|
705
|
+
float: left;
|
706
|
+
margin: 0 6px 5px 0;
|
707
|
+
border: 1px solid #ddd;
|
708
|
+
border-radius: 4px;
|
709
|
+
background: #fff
|
710
|
+
}
|
711
|
+
|
712
|
+
.cke_combo_off a.cke_combo_button:focus, .cke_combo_off a.cke_combo_button:hover {
|
713
|
+
outline: 0
|
714
|
+
}
|
715
|
+
|
716
|
+
.cke_combo_off a.cke_combo_button:active, .cke_combo_on a.cke_combo_button {
|
717
|
+
border-color: #333
|
718
|
+
}
|
719
|
+
|
720
|
+
.cke_rtl .cke_combo_button {
|
721
|
+
float: right;
|
722
|
+
margin-left: 5px;
|
723
|
+
margin-right: 0
|
724
|
+
}
|
725
|
+
|
726
|
+
.cke_hc a.cke_combo_button {
|
727
|
+
padding: 3px
|
728
|
+
}
|
729
|
+
|
730
|
+
.cke_hc .cke_combo_off a.cke_combo_button:active, .cke_hc .cke_combo_off a.cke_combo_button:focus, .cke_hc .cke_combo_off a.cke_combo_button:hover, .cke_hc .cke_combo_on a.cke_combo_button {
|
731
|
+
border-width: 3px;
|
732
|
+
padding: 1px
|
733
|
+
}
|
734
|
+
|
735
|
+
.cke_combo_text {
|
736
|
+
line-height: 26px;
|
737
|
+
padding-left: 10px;
|
738
|
+
text-overflow: ellipsis;
|
739
|
+
overflow: hidden;
|
740
|
+
float: left;
|
741
|
+
cursor: default;
|
742
|
+
color: #474747;
|
743
|
+
width: 60px
|
744
|
+
}
|
745
|
+
|
746
|
+
.cke_rtl .cke_combo_text {
|
747
|
+
float: right;
|
748
|
+
text-align: right;
|
749
|
+
padding-left: 0;
|
750
|
+
padding-right: 10px
|
751
|
+
}
|
752
|
+
|
753
|
+
.cke_hc .cke_combo_text {
|
754
|
+
line-height: 18px;
|
755
|
+
font-size: 12px
|
756
|
+
}
|
757
|
+
|
758
|
+
.cke_combo_open {
|
759
|
+
cursor: default;
|
760
|
+
display: inline-block;
|
761
|
+
font-size: 0;
|
762
|
+
height: 19px;
|
763
|
+
line-height: 17px;
|
764
|
+
margin: 1px 7px;
|
765
|
+
width: 5px
|
766
|
+
}
|
767
|
+
|
768
|
+
.cke_hc .cke_combo_open {
|
769
|
+
height: 12px
|
770
|
+
}
|
771
|
+
|
772
|
+
.cke_combo_arrow {
|
773
|
+
margin: 11px 0 0;
|
774
|
+
float: left;
|
775
|
+
height: 0;
|
776
|
+
width: 0;
|
777
|
+
font-size: 0;
|
778
|
+
border-left: 3px solid transparent;
|
779
|
+
border-right: 3px solid transparent;
|
780
|
+
border-top: 3px solid #333
|
781
|
+
}
|
782
|
+
|
783
|
+
.cke_hc .cke_combo_arrow {
|
784
|
+
font-size: 10px;
|
785
|
+
width: auto;
|
786
|
+
border: 0;
|
787
|
+
margin-top: 3px
|
788
|
+
}
|
789
|
+
|
790
|
+
.cke_combo_disabled .cke_combo_inlinelabel, .cke_combo_disabled .cke_combo_open {
|
791
|
+
opacity: .3
|
792
|
+
}
|
793
|
+
|
794
|
+
.cke_path {
|
795
|
+
float: left;
|
796
|
+
margin: -2px 0 2px
|
797
|
+
}
|
798
|
+
|
799
|
+
.cke_path_empty, .cke_path_item {
|
800
|
+
display: inline-block;
|
801
|
+
float: left;
|
802
|
+
padding: 3px 4px;
|
803
|
+
margin-right: 2px;
|
804
|
+
cursor: default;
|
805
|
+
text-decoration: none;
|
806
|
+
outline: 0;
|
807
|
+
border: 0;
|
808
|
+
color: #4c4c4c;
|
809
|
+
font-weight: 700;
|
810
|
+
font-size: 11px
|
811
|
+
}
|
812
|
+
|
813
|
+
.cke_rtl .cke_path, .cke_rtl .cke_path_empty, .cke_rtl .cke_path_item {
|
814
|
+
float: right
|
815
|
+
}
|
816
|
+
|
817
|
+
a.cke_path_item:active, a.cke_path_item:focus, a.cke_path_item:hover {
|
818
|
+
background-color: #bfbfbf;
|
819
|
+
color: #333;
|
820
|
+
border-radius: 2px
|
821
|
+
}
|
822
|
+
|
823
|
+
.cke_hc a.cke_path_item:active, .cke_hc a.cke_path_item:focus, .cke_hc a.cke_path_item:hover {
|
824
|
+
border: 2px solid;
|
825
|
+
padding: 1px 2px
|
826
|
+
}
|
827
|
+
|
828
|
+
.cke_button__source_label, .cke_button__sourcedialog_label {
|
829
|
+
display: inline
|
830
|
+
}
|
831
|
+
|
832
|
+
.cke_combo__fontsize .cke_combo_text {
|
833
|
+
width: 30px
|
834
|
+
}
|
835
|
+
|
836
|
+
.cke_combopanel__fontsize {
|
837
|
+
width: 120px
|
838
|
+
}
|
839
|
+
|
840
|
+
.cke_source {
|
841
|
+
font-family: 'Courier New', Monospace;
|
842
|
+
font-size: small;
|
843
|
+
background-color: #fff;
|
844
|
+
white-space: pre
|
845
|
+
}
|
846
|
+
|
847
|
+
.cke_wysiwyg_div, .cke_wysiwyg_frame {
|
848
|
+
background-color: #fff
|
849
|
+
}
|
850
|
+
|
851
|
+
.cke_chrome {
|
852
|
+
visibility: inherit
|
853
|
+
}
|
854
|
+
|
855
|
+
.cke_voice_label, legend.cke_voice_label {
|
856
|
+
display: none
|
857
|
+
}
|
858
|
+
|
859
|
+
.cke_button__about_icon {
|
860
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -0px !important
|
861
|
+
}
|
862
|
+
|
863
|
+
.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {
|
864
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -24px !important
|
865
|
+
}
|
866
|
+
|
867
|
+
.cke_ltr .cke_button__anchor_icon {
|
868
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -48px !important
|
869
|
+
}
|
870
|
+
|
871
|
+
.cke_button__bgcolor_icon {
|
872
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -72px !important
|
873
|
+
}
|
874
|
+
|
875
|
+
.cke_button__bidiltr_icon {
|
876
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -96px !important
|
877
|
+
}
|
878
|
+
|
879
|
+
.cke_button__bidirtl_icon {
|
880
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -120px !important
|
881
|
+
}
|
882
|
+
|
883
|
+
.cke_button__blockquote_icon {
|
884
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -144px !important
|
885
|
+
}
|
886
|
+
|
887
|
+
.cke_button__bold_icon {
|
888
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -168px !important
|
889
|
+
}
|
890
|
+
|
891
|
+
.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {
|
892
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -192px !important
|
893
|
+
}
|
894
|
+
|
895
|
+
.cke_ltr .cke_button__bulletedlist_icon {
|
896
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -216px !important
|
897
|
+
}
|
898
|
+
|
899
|
+
.cke_button__button_icon {
|
900
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -240px !important
|
901
|
+
}
|
902
|
+
|
903
|
+
.cke_button__checkbox_icon {
|
904
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -264px !important
|
905
|
+
}
|
906
|
+
|
907
|
+
.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {
|
908
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -288px !important
|
909
|
+
}
|
910
|
+
|
911
|
+
.cke_ltr .cke_button__copy_icon {
|
912
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -312px !important
|
913
|
+
}
|
914
|
+
|
915
|
+
.cke_button__creatediv_icon {
|
916
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -336px !important
|
917
|
+
}
|
918
|
+
|
919
|
+
.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {
|
920
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -360px !important
|
921
|
+
}
|
922
|
+
|
923
|
+
.cke_ltr .cke_button__cut_icon {
|
924
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -384px !important
|
925
|
+
}
|
926
|
+
|
927
|
+
.cke_button__find_icon {
|
928
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -408px !important
|
929
|
+
}
|
930
|
+
|
931
|
+
.cke_button__flash_icon {
|
932
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -432px !important
|
933
|
+
}
|
934
|
+
|
935
|
+
.cke_button__form_icon {
|
936
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -456px !important
|
937
|
+
}
|
938
|
+
|
939
|
+
.cke_rtl .cke_button__hiddenfield_icon, .cke_mixed_dir_content .cke_rtl .cke_button__hiddenfield_icon {
|
940
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -480px !important
|
941
|
+
}
|
942
|
+
|
943
|
+
.cke_ltr .cke_button__hiddenfield_icon {
|
944
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -504px !important
|
945
|
+
}
|
946
|
+
|
947
|
+
.cke_button__horizontalrule_icon {
|
948
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -528px !important
|
949
|
+
}
|
950
|
+
|
951
|
+
.cke_button__iframe_icon {
|
952
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -552px !important
|
953
|
+
}
|
954
|
+
|
955
|
+
.cke_button__image_icon {
|
956
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -576px !important
|
957
|
+
}
|
958
|
+
|
959
|
+
.cke_button__imagebutton_icon {
|
960
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -600px !important
|
961
|
+
}
|
962
|
+
|
963
|
+
.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {
|
964
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -624px !important
|
965
|
+
}
|
966
|
+
|
967
|
+
.cke_ltr .cke_button__indent_icon {
|
968
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -648px !important
|
969
|
+
}
|
970
|
+
|
971
|
+
.cke_button__italic_icon {
|
972
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -672px !important
|
973
|
+
}
|
974
|
+
|
975
|
+
.cke_button__justifyblock_icon {
|
976
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -696px !important
|
977
|
+
}
|
978
|
+
|
979
|
+
.cke_button__justifycenter_icon {
|
980
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -720px !important
|
981
|
+
}
|
982
|
+
|
983
|
+
.cke_button__justifyleft_icon {
|
984
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -744px !important
|
985
|
+
}
|
986
|
+
|
987
|
+
.cke_button__justifyright_icon {
|
988
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -768px !important
|
989
|
+
}
|
990
|
+
|
991
|
+
.cke_button__link_icon {
|
992
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -792px !important
|
993
|
+
}
|
994
|
+
|
995
|
+
.cke_button__maximize_icon {
|
996
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -816px !important
|
997
|
+
}
|
998
|
+
|
999
|
+
.cke_rtl .cke_button__newpage_icon, .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {
|
1000
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -840px !important
|
1001
|
+
}
|
1002
|
+
|
1003
|
+
.cke_ltr .cke_button__newpage_icon {
|
1004
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -864px !important
|
1005
|
+
}
|
1006
|
+
|
1007
|
+
.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {
|
1008
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -888px !important
|
1009
|
+
}
|
1010
|
+
|
1011
|
+
.cke_ltr .cke_button__numberedlist_icon {
|
1012
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -912px !important
|
1013
|
+
}
|
1014
|
+
|
1015
|
+
.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {
|
1016
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -936px !important
|
1017
|
+
}
|
1018
|
+
|
1019
|
+
.cke_ltr .cke_button__outdent_icon {
|
1020
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -960px !important
|
1021
|
+
}
|
1022
|
+
|
1023
|
+
.cke_rtl .cke_button__pagebreak_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {
|
1024
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -984px !important
|
1025
|
+
}
|
1026
|
+
|
1027
|
+
.cke_ltr .cke_button__pagebreak_icon {
|
1028
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1008px !important
|
1029
|
+
}
|
1030
|
+
|
1031
|
+
.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {
|
1032
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1032px !important
|
1033
|
+
}
|
1034
|
+
|
1035
|
+
.cke_ltr .cke_button__paste_icon {
|
1036
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1056px !important
|
1037
|
+
}
|
1038
|
+
|
1039
|
+
.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {
|
1040
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1080px !important
|
1041
|
+
}
|
1042
|
+
|
1043
|
+
.cke_ltr .cke_button__pastefromword_icon {
|
1044
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1104px !important
|
1045
|
+
}
|
1046
|
+
|
1047
|
+
.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {
|
1048
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1128px !important
|
1049
|
+
}
|
1050
|
+
|
1051
|
+
.cke_ltr .cke_button__pastetext_icon {
|
1052
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1152px !important
|
1053
|
+
}
|
1054
|
+
|
1055
|
+
.cke_rtl .cke_button__preview_icon, .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {
|
1056
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1176px !important
|
1057
|
+
}
|
1058
|
+
|
1059
|
+
.cke_ltr .cke_button__preview_icon {
|
1060
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1200px !important
|
1061
|
+
}
|
1062
|
+
|
1063
|
+
.cke_button__print_icon {
|
1064
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1224px !important
|
1065
|
+
}
|
1066
|
+
|
1067
|
+
.cke_button__radio_icon {
|
1068
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1248px !important
|
1069
|
+
}
|
1070
|
+
|
1071
|
+
.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {
|
1072
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1272px !important
|
1073
|
+
}
|
1074
|
+
|
1075
|
+
.cke_ltr .cke_button__redo_icon {
|
1076
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1296px !important
|
1077
|
+
}
|
1078
|
+
|
1079
|
+
.cke_button__removeformat_icon {
|
1080
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1320px !important
|
1081
|
+
}
|
1082
|
+
|
1083
|
+
.cke_button__replace_icon {
|
1084
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1344px !important
|
1085
|
+
}
|
1086
|
+
|
1087
|
+
.cke_button__save_icon {
|
1088
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1368px !important
|
1089
|
+
}
|
1090
|
+
|
1091
|
+
.cke_button__scayt_icon {
|
1092
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1392px !important
|
1093
|
+
}
|
1094
|
+
|
1095
|
+
.cke_rtl .cke_button__select_icon, .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {
|
1096
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1416px !important
|
1097
|
+
}
|
1098
|
+
|
1099
|
+
.cke_ltr .cke_button__select_icon {
|
1100
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1440px !important
|
1101
|
+
}
|
1102
|
+
|
1103
|
+
.cke_button__selectall_icon {
|
1104
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1464px !important
|
1105
|
+
}
|
1106
|
+
|
1107
|
+
.cke_rtl .cke_button__showblocks_icon, .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {
|
1108
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1488px !important
|
1109
|
+
}
|
1110
|
+
|
1111
|
+
.cke_ltr .cke_button__showblocks_icon {
|
1112
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1512px !important
|
1113
|
+
}
|
1114
|
+
|
1115
|
+
.cke_button__smiley_icon {
|
1116
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1536px !important
|
1117
|
+
}
|
1118
|
+
|
1119
|
+
.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {
|
1120
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1560px !important
|
1121
|
+
}
|
1122
|
+
|
1123
|
+
.cke_ltr .cke_button__source_icon {
|
1124
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1584px !important
|
1125
|
+
}
|
1126
|
+
|
1127
|
+
.cke_button__specialchar_icon {
|
1128
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1608px !important
|
1129
|
+
}
|
1130
|
+
|
1131
|
+
.cke_button__spellchecker_icon {
|
1132
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1632px !important
|
1133
|
+
}
|
1134
|
+
|
1135
|
+
.cke_button__strike_icon {
|
1136
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1656px !important
|
1137
|
+
}
|
1138
|
+
|
1139
|
+
.cke_button__subscript_icon {
|
1140
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1680px !important
|
1141
|
+
}
|
1142
|
+
|
1143
|
+
.cke_button__superscript_icon {
|
1144
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1704px !important
|
1145
|
+
}
|
1146
|
+
|
1147
|
+
.cke_button__table_icon {
|
1148
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1728px !important
|
1149
|
+
}
|
1150
|
+
|
1151
|
+
.cke_rtl .cke_button__templates_icon, .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {
|
1152
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1752px !important
|
1153
|
+
}
|
1154
|
+
|
1155
|
+
.cke_ltr .cke_button__templates_icon {
|
1156
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1776px !important
|
1157
|
+
}
|
1158
|
+
|
1159
|
+
.cke_rtl .cke_button__textarea_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {
|
1160
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1800px !important
|
1161
|
+
}
|
1162
|
+
|
1163
|
+
.cke_ltr .cke_button__textarea_icon {
|
1164
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1824px !important
|
1165
|
+
}
|
1166
|
+
|
1167
|
+
.cke_button__textcolor_icon {
|
1168
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1848px !important
|
1169
|
+
}
|
1170
|
+
|
1171
|
+
.cke_rtl .cke_button__textfield_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {
|
1172
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1872px !important
|
1173
|
+
}
|
1174
|
+
|
1175
|
+
.cke_ltr .cke_button__textfield_icon {
|
1176
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1896px !important
|
1177
|
+
}
|
1178
|
+
|
1179
|
+
.cke_button__underline_icon {
|
1180
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1920px !important
|
1181
|
+
}
|
1182
|
+
|
1183
|
+
.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {
|
1184
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1944px !important
|
1185
|
+
}
|
1186
|
+
|
1187
|
+
.cke_ltr .cke_button__undo_icon {
|
1188
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1968px !important
|
1189
|
+
}
|
1190
|
+
|
1191
|
+
.cke_button__unlink_icon {
|
1192
|
+
background: image_url('ckeditor-bootstrap/icons.png') no-repeat 0 -1992px !important
|
1193
|
+
}
|
1194
|
+
|
1195
|
+
.cke_hidpi .cke_button__about_icon {
|
1196
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -0px !important;
|
1197
|
+
background-size: 16px !important
|
1198
|
+
}
|
1199
|
+
|
1200
|
+
.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {
|
1201
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -24px !important;
|
1202
|
+
background-size: 16px !important
|
1203
|
+
}
|
1204
|
+
|
1205
|
+
.cke_hidpi .cke_ltr .cke_button__anchor_icon, .cke_ltr.cke_hidpi .cke_button__anchor_icon {
|
1206
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -48px !important;
|
1207
|
+
background-size: 16px !important
|
1208
|
+
}
|
1209
|
+
|
1210
|
+
.cke_hidpi .cke_button__bgcolor_icon {
|
1211
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -72px !important;
|
1212
|
+
background-size: 16px !important
|
1213
|
+
}
|
1214
|
+
|
1215
|
+
.cke_hidpi .cke_button__bidiltr_icon {
|
1216
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -96px !important;
|
1217
|
+
background-size: 16px !important
|
1218
|
+
}
|
1219
|
+
|
1220
|
+
.cke_hidpi .cke_button__bidirtl_icon {
|
1221
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -120px !important;
|
1222
|
+
background-size: 16px !important
|
1223
|
+
}
|
1224
|
+
|
1225
|
+
.cke_hidpi .cke_button__blockquote_icon {
|
1226
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -144px !important;
|
1227
|
+
background-size: 16px !important
|
1228
|
+
}
|
1229
|
+
|
1230
|
+
.cke_hidpi .cke_button__bold_icon {
|
1231
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -168px !important;
|
1232
|
+
background-size: 16px !important
|
1233
|
+
}
|
1234
|
+
|
1235
|
+
.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {
|
1236
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -192px !important;
|
1237
|
+
background-size: 16px !important
|
1238
|
+
}
|
1239
|
+
|
1240
|
+
.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon, .cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {
|
1241
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -216px !important;
|
1242
|
+
background-size: 16px !important
|
1243
|
+
}
|
1244
|
+
|
1245
|
+
.cke_hidpi .cke_button__button_icon {
|
1246
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -240px !important;
|
1247
|
+
background-size: 16px !important
|
1248
|
+
}
|
1249
|
+
|
1250
|
+
.cke_hidpi .cke_button__checkbox_icon {
|
1251
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -264px !important;
|
1252
|
+
background-size: 16px !important
|
1253
|
+
}
|
1254
|
+
|
1255
|
+
.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {
|
1256
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -288px !important;
|
1257
|
+
background-size: 16px !important
|
1258
|
+
}
|
1259
|
+
|
1260
|
+
.cke_hidpi .cke_ltr .cke_button__copy_icon, .cke_ltr.cke_hidpi .cke_button__copy_icon {
|
1261
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -312px !important;
|
1262
|
+
background-size: 16px !important
|
1263
|
+
}
|
1264
|
+
|
1265
|
+
.cke_hidpi .cke_button__creatediv_icon {
|
1266
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -336px !important;
|
1267
|
+
background-size: 16px !important
|
1268
|
+
}
|
1269
|
+
|
1270
|
+
.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {
|
1271
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -360px !important;
|
1272
|
+
background-size: 16px !important
|
1273
|
+
}
|
1274
|
+
|
1275
|
+
.cke_hidpi .cke_ltr .cke_button__cut_icon, .cke_ltr.cke_hidpi .cke_button__cut_icon {
|
1276
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -384px !important;
|
1277
|
+
background-size: 16px !important
|
1278
|
+
}
|
1279
|
+
|
1280
|
+
.cke_hidpi .cke_button__find_icon {
|
1281
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -408px !important;
|
1282
|
+
background-size: 16px !important
|
1283
|
+
}
|
1284
|
+
|
1285
|
+
.cke_hidpi .cke_button__flash_icon {
|
1286
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -432px !important;
|
1287
|
+
background-size: 16px !important
|
1288
|
+
}
|
1289
|
+
|
1290
|
+
.cke_hidpi .cke_button__form_icon {
|
1291
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -456px !important;
|
1292
|
+
background-size: 16px !important
|
1293
|
+
}
|
1294
|
+
|
1295
|
+
.cke_rtl.cke_hidpi .cke_button__hiddenfield_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__hiddenfield_icon {
|
1296
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -480px !important;
|
1297
|
+
background-size: 16px !important
|
1298
|
+
}
|
1299
|
+
|
1300
|
+
.cke_hidpi .cke_ltr .cke_button__hiddenfield_icon, .cke_ltr.cke_hidpi .cke_button__hiddenfield_icon {
|
1301
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -504px !important;
|
1302
|
+
background-size: 16px !important
|
1303
|
+
}
|
1304
|
+
|
1305
|
+
.cke_hidpi .cke_button__horizontalrule_icon {
|
1306
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -528px !important;
|
1307
|
+
background-size: 16px !important
|
1308
|
+
}
|
1309
|
+
|
1310
|
+
.cke_hidpi .cke_button__iframe_icon {
|
1311
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -552px !important;
|
1312
|
+
background-size: 16px !important
|
1313
|
+
}
|
1314
|
+
|
1315
|
+
.cke_hidpi .cke_button__image_icon {
|
1316
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -576px !important;
|
1317
|
+
background-size: 16px !important
|
1318
|
+
}
|
1319
|
+
|
1320
|
+
.cke_hidpi .cke_button__imagebutton_icon {
|
1321
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -600px !important;
|
1322
|
+
background-size: 16px !important
|
1323
|
+
}
|
1324
|
+
|
1325
|
+
.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {
|
1326
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -624px !important;
|
1327
|
+
background-size: 16px !important
|
1328
|
+
}
|
1329
|
+
|
1330
|
+
.cke_hidpi .cke_ltr .cke_button__indent_icon, .cke_ltr.cke_hidpi .cke_button__indent_icon {
|
1331
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -648px !important;
|
1332
|
+
background-size: 16px !important
|
1333
|
+
}
|
1334
|
+
|
1335
|
+
.cke_hidpi .cke_button__italic_icon {
|
1336
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -672px !important;
|
1337
|
+
background-size: 16px !important
|
1338
|
+
}
|
1339
|
+
|
1340
|
+
.cke_hidpi .cke_button__justifyblock_icon {
|
1341
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -696px !important;
|
1342
|
+
background-size: 16px !important
|
1343
|
+
}
|
1344
|
+
|
1345
|
+
.cke_hidpi .cke_button__justifycenter_icon {
|
1346
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -720px !important;
|
1347
|
+
background-size: 16px !important
|
1348
|
+
}
|
1349
|
+
|
1350
|
+
.cke_hidpi .cke_button__justifyleft_icon {
|
1351
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -744px !important;
|
1352
|
+
background-size: 16px !important
|
1353
|
+
}
|
1354
|
+
|
1355
|
+
.cke_hidpi .cke_button__justifyright_icon {
|
1356
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -768px !important;
|
1357
|
+
background-size: 16px !important
|
1358
|
+
}
|
1359
|
+
|
1360
|
+
.cke_hidpi .cke_button__link_icon {
|
1361
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -792px !important;
|
1362
|
+
background-size: 16px !important
|
1363
|
+
}
|
1364
|
+
|
1365
|
+
.cke_hidpi .cke_button__maximize_icon {
|
1366
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -816px !important;
|
1367
|
+
background-size: 16px !important
|
1368
|
+
}
|
1369
|
+
|
1370
|
+
.cke_rtl.cke_hidpi .cke_button__newpage_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {
|
1371
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -840px !important;
|
1372
|
+
background-size: 16px !important
|
1373
|
+
}
|
1374
|
+
|
1375
|
+
.cke_hidpi .cke_ltr .cke_button__newpage_icon, .cke_ltr.cke_hidpi .cke_button__newpage_icon {
|
1376
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -864px !important;
|
1377
|
+
background-size: 16px !important
|
1378
|
+
}
|
1379
|
+
|
1380
|
+
.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {
|
1381
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -888px !important;
|
1382
|
+
background-size: 16px !important
|
1383
|
+
}
|
1384
|
+
|
1385
|
+
.cke_hidpi .cke_ltr .cke_button__numberedlist_icon, .cke_ltr.cke_hidpi .cke_button__numberedlist_icon {
|
1386
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -912px !important;
|
1387
|
+
background-size: 16px !important
|
1388
|
+
}
|
1389
|
+
|
1390
|
+
.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {
|
1391
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -936px !important;
|
1392
|
+
background-size: 16px !important
|
1393
|
+
}
|
1394
|
+
|
1395
|
+
.cke_hidpi .cke_ltr .cke_button__outdent_icon, .cke_ltr.cke_hidpi .cke_button__outdent_icon {
|
1396
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -960px !important;
|
1397
|
+
background-size: 16px !important
|
1398
|
+
}
|
1399
|
+
|
1400
|
+
.cke_rtl.cke_hidpi .cke_button__pagebreak_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {
|
1401
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -984px !important;
|
1402
|
+
background-size: 16px !important
|
1403
|
+
}
|
1404
|
+
|
1405
|
+
.cke_hidpi .cke_ltr .cke_button__pagebreak_icon, .cke_ltr.cke_hidpi .cke_button__pagebreak_icon {
|
1406
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1008px !important;
|
1407
|
+
background-size: 16px !important
|
1408
|
+
}
|
1409
|
+
|
1410
|
+
.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {
|
1411
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1032px !important;
|
1412
|
+
background-size: 16px !important
|
1413
|
+
}
|
1414
|
+
|
1415
|
+
.cke_hidpi .cke_ltr .cke_button__paste_icon, .cke_ltr.cke_hidpi .cke_button__paste_icon {
|
1416
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1056px !important;
|
1417
|
+
background-size: 16px !important
|
1418
|
+
}
|
1419
|
+
|
1420
|
+
.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {
|
1421
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1080px !important;
|
1422
|
+
background-size: 16px !important
|
1423
|
+
}
|
1424
|
+
|
1425
|
+
.cke_hidpi .cke_ltr .cke_button__pastefromword_icon, .cke_ltr.cke_hidpi .cke_button__pastefromword_icon {
|
1426
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1104px !important;
|
1427
|
+
background-size: 16px !important
|
1428
|
+
}
|
1429
|
+
|
1430
|
+
.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {
|
1431
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1128px !important;
|
1432
|
+
background-size: 16px !important
|
1433
|
+
}
|
1434
|
+
|
1435
|
+
.cke_hidpi .cke_ltr .cke_button__pastetext_icon, .cke_ltr.cke_hidpi .cke_button__pastetext_icon {
|
1436
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1152px !important;
|
1437
|
+
background-size: 16px !important
|
1438
|
+
}
|
1439
|
+
|
1440
|
+
.cke_rtl.cke_hidpi .cke_button__preview_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {
|
1441
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1176px !important;
|
1442
|
+
background-size: 16px !important
|
1443
|
+
}
|
1444
|
+
|
1445
|
+
.cke_hidpi .cke_ltr .cke_button__preview_icon, .cke_ltr.cke_hidpi .cke_button__preview_icon {
|
1446
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1200px !important;
|
1447
|
+
background-size: 16px !important
|
1448
|
+
}
|
1449
|
+
|
1450
|
+
.cke_hidpi .cke_button__print_icon {
|
1451
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1224px !important;
|
1452
|
+
background-size: 16px !important
|
1453
|
+
}
|
1454
|
+
|
1455
|
+
.cke_hidpi .cke_button__radio_icon {
|
1456
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1248px !important;
|
1457
|
+
background-size: 16px !important
|
1458
|
+
}
|
1459
|
+
|
1460
|
+
.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {
|
1461
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1272px !important;
|
1462
|
+
background-size: 16px !important
|
1463
|
+
}
|
1464
|
+
|
1465
|
+
.cke_hidpi .cke_ltr .cke_button__redo_icon, .cke_ltr.cke_hidpi .cke_button__redo_icon {
|
1466
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1296px !important;
|
1467
|
+
background-size: 16px !important
|
1468
|
+
}
|
1469
|
+
|
1470
|
+
.cke_hidpi .cke_button__removeformat_icon {
|
1471
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1320px !important;
|
1472
|
+
background-size: 16px !important
|
1473
|
+
}
|
1474
|
+
|
1475
|
+
.cke_hidpi .cke_button__replace_icon {
|
1476
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1344px !important;
|
1477
|
+
background-size: 16px !important
|
1478
|
+
}
|
1479
|
+
|
1480
|
+
.cke_hidpi .cke_button__save_icon {
|
1481
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1368px !important;
|
1482
|
+
background-size: 16px !important
|
1483
|
+
}
|
1484
|
+
|
1485
|
+
.cke_hidpi .cke_button__scayt_icon {
|
1486
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1392px !important;
|
1487
|
+
background-size: 16px !important
|
1488
|
+
}
|
1489
|
+
|
1490
|
+
.cke_rtl.cke_hidpi .cke_button__select_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {
|
1491
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1416px !important;
|
1492
|
+
background-size: 16px !important
|
1493
|
+
}
|
1494
|
+
|
1495
|
+
.cke_hidpi .cke_ltr .cke_button__select_icon, .cke_ltr.cke_hidpi .cke_button__select_icon {
|
1496
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1440px !important;
|
1497
|
+
background-size: 16px !important
|
1498
|
+
}
|
1499
|
+
|
1500
|
+
.cke_hidpi .cke_button__selectall_icon {
|
1501
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1464px !important;
|
1502
|
+
background-size: 16px !important
|
1503
|
+
}
|
1504
|
+
|
1505
|
+
.cke_rtl.cke_hidpi .cke_button__showblocks_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {
|
1506
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1488px !important;
|
1507
|
+
background-size: 16px !important
|
1508
|
+
}
|
1509
|
+
|
1510
|
+
.cke_hidpi .cke_ltr .cke_button__showblocks_icon, .cke_ltr.cke_hidpi .cke_button__showblocks_icon {
|
1511
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1512px !important;
|
1512
|
+
background-size: 16px !important
|
1513
|
+
}
|
1514
|
+
|
1515
|
+
.cke_hidpi .cke_button__smiley_icon {
|
1516
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1536px !important;
|
1517
|
+
background-size: 16px !important
|
1518
|
+
}
|
1519
|
+
|
1520
|
+
.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {
|
1521
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1560px !important;
|
1522
|
+
background-size: 16px !important
|
1523
|
+
}
|
1524
|
+
|
1525
|
+
.cke_hidpi .cke_ltr .cke_button__source_icon, .cke_ltr.cke_hidpi .cke_button__source_icon {
|
1526
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1584px !important;
|
1527
|
+
background-size: 16px !important
|
1528
|
+
}
|
1529
|
+
|
1530
|
+
.cke_hidpi .cke_button__specialchar_icon {
|
1531
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1608px !important;
|
1532
|
+
background-size: 16px !important
|
1533
|
+
}
|
1534
|
+
|
1535
|
+
.cke_hidpi .cke_button__spellchecker_icon {
|
1536
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1632px !important;
|
1537
|
+
background-size: 16px !important
|
1538
|
+
}
|
1539
|
+
|
1540
|
+
.cke_hidpi .cke_button__strike_icon {
|
1541
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1656px !important;
|
1542
|
+
background-size: 16px !important
|
1543
|
+
}
|
1544
|
+
|
1545
|
+
.cke_hidpi .cke_button__subscript_icon {
|
1546
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1680px !important;
|
1547
|
+
background-size: 16px !important
|
1548
|
+
}
|
1549
|
+
|
1550
|
+
.cke_hidpi .cke_button__superscript_icon {
|
1551
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1704px !important;
|
1552
|
+
background-size: 16px !important
|
1553
|
+
}
|
1554
|
+
|
1555
|
+
.cke_hidpi .cke_button__table_icon {
|
1556
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1728px !important;
|
1557
|
+
background-size: 16px !important
|
1558
|
+
}
|
1559
|
+
|
1560
|
+
.cke_rtl.cke_hidpi .cke_button__templates_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {
|
1561
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1752px !important;
|
1562
|
+
background-size: 16px !important
|
1563
|
+
}
|
1564
|
+
|
1565
|
+
.cke_hidpi .cke_ltr .cke_button__templates_icon, .cke_ltr.cke_hidpi .cke_button__templates_icon {
|
1566
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1776px !important;
|
1567
|
+
background-size: 16px !important
|
1568
|
+
}
|
1569
|
+
|
1570
|
+
.cke_rtl.cke_hidpi .cke_button__textarea_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {
|
1571
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1800px !important;
|
1572
|
+
background-size: 16px !important
|
1573
|
+
}
|
1574
|
+
|
1575
|
+
.cke_hidpi .cke_ltr .cke_button__textarea_icon, .cke_ltr.cke_hidpi .cke_button__textarea_icon {
|
1576
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1824px !important;
|
1577
|
+
background-size: 16px !important
|
1578
|
+
}
|
1579
|
+
|
1580
|
+
.cke_hidpi .cke_button__textcolor_icon {
|
1581
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1848px !important;
|
1582
|
+
background-size: 16px !important
|
1583
|
+
}
|
1584
|
+
|
1585
|
+
.cke_rtl.cke_hidpi .cke_button__textfield_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {
|
1586
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1872px !important;
|
1587
|
+
background-size: 16px !important
|
1588
|
+
}
|
1589
|
+
|
1590
|
+
.cke_hidpi .cke_ltr .cke_button__textfield_icon, .cke_ltr.cke_hidpi .cke_button__textfield_icon {
|
1591
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1896px !important;
|
1592
|
+
background-size: 16px !important
|
1593
|
+
}
|
1594
|
+
|
1595
|
+
.cke_hidpi .cke_button__underline_icon {
|
1596
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1920px !important;
|
1597
|
+
background-size: 16px !important
|
1598
|
+
}
|
1599
|
+
|
1600
|
+
.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {
|
1601
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1944px !important;
|
1602
|
+
background-size: 16px !important
|
1603
|
+
}
|
1604
|
+
|
1605
|
+
.cke_hidpi .cke_ltr .cke_button__undo_icon, .cke_ltr.cke_hidpi .cke_button__undo_icon {
|
1606
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1968px !important;
|
1607
|
+
background-size: 16px !important
|
1608
|
+
}
|
1609
|
+
|
1610
|
+
.cke_hidpi .cke_button__unlink_icon {
|
1611
|
+
background: image_url('ckeditor-bootstrap/icons_hidpi.png') no-repeat 0 -1992px !important;
|
1612
|
+
background-size: 16px !important
|
1613
|
+
}
|