scrivito_editors 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (82) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +48 -0
  3. data/LICENSE +4 -0
  4. data/README.md +55 -0
  5. data/Rakefile +9 -0
  6. data/app/assets/fonts/editing_icons-webfont.eot +0 -0
  7. data/app/assets/fonts/editing_icons-webfont.ttf +0 -0
  8. data/app/assets/fonts/editing_icons-webfont.woff +0 -0
  9. data/app/assets/javascripts/jquery_additions/jquery_center.js.coffee +6 -0
  10. data/app/assets/javascripts/mediabrowser/inspector.js.coffee +65 -0
  11. data/app/assets/javascripts/mediabrowser/mediabrowser.js.coffee +420 -0
  12. data/app/assets/javascripts/mediabrowser/uploader.js.coffee +132 -0
  13. data/app/assets/javascripts/scrivito_editors.js +18 -0
  14. data/app/assets/javascripts/scrivito_editors/date_editor.js.coffee +50 -0
  15. data/app/assets/javascripts/scrivito_editors/enum_editor.js.coffee +36 -0
  16. data/app/assets/javascripts/scrivito_editors/html_editor.js.coffee +140 -0
  17. data/app/assets/javascripts/scrivito_editors/linklist_editor.js.coffee +176 -0
  18. data/app/assets/javascripts/scrivito_editors/multienum_editor.js.coffee +37 -0
  19. data/app/assets/javascripts/scrivito_editors/placeholder.js.coffee +22 -0
  20. data/app/assets/javascripts/scrivito_editors/reference_editor.js.coffee +28 -0
  21. data/app/assets/javascripts/scrivito_editors/referencelist_editor.js.coffee +111 -0
  22. data/app/assets/javascripts/scrivito_editors/slider_editor.js.coffee +39 -0
  23. data/app/assets/javascripts/scrivito_editors/string_editor.js.coffee +83 -0
  24. data/app/assets/javascripts/scrivito_editors/text_editor.js.coffee +85 -0
  25. data/app/assets/stylesheets/scrivito_editors.css +16 -0
  26. data/app/assets/stylesheets/scrivito_editors/buttons.css +161 -0
  27. data/app/assets/stylesheets/scrivito_editors/editors/linklist_editor.css +105 -0
  28. data/app/assets/stylesheets/scrivito_editors/editors/referencelist_editor.css +67 -0
  29. data/app/assets/stylesheets/scrivito_editors/editors/text_editor.css +7 -0
  30. data/app/assets/stylesheets/scrivito_editors/icons.css.erb +229 -0
  31. data/app/assets/stylesheets/scrivito_editors/mediabrowser.css +1010 -0
  32. data/app/assets/stylesheets/scrivito_editors/placeholder.css +17 -0
  33. data/app/assets/stylesheets/scrivito_editors/widget_preview.css +38 -0
  34. data/app/controllers/scrivito_editors/mediabrowser_controller.rb +36 -0
  35. data/app/views/layouts/scrivito_editors/mediabrowser/inspector.html.erb +11 -0
  36. data/app/views/scrivito_editors/mediabrowser/_buttons.html.erb +16 -0
  37. data/app/views/scrivito_editors/mediabrowser/_header.html.erb +25 -0
  38. data/app/views/scrivito_editors/mediabrowser/modal.html.erb +12 -0
  39. data/app/views/scrivito_editors/obj/details.html +5 -0
  40. data/config/initializers/mediabrowser.rb +13 -0
  41. data/config/routes.rb +5 -0
  42. data/lib/scrivito_editors.rb +4 -0
  43. data/lib/scrivito_editors/engine.rb +7 -0
  44. data/lib/scrivito_editors/version.rb +3 -0
  45. data/spec/dummy/README.rdoc +28 -0
  46. data/spec/dummy/Rakefile +6 -0
  47. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  48. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  49. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  50. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  51. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  52. data/spec/dummy/bin/bundle +3 -0
  53. data/spec/dummy/bin/rails +4 -0
  54. data/spec/dummy/bin/rake +4 -0
  55. data/spec/dummy/config.ru +4 -0
  56. data/spec/dummy/config/application.rb +23 -0
  57. data/spec/dummy/config/boot.rb +5 -0
  58. data/spec/dummy/config/database.yml +25 -0
  59. data/spec/dummy/config/environment.rb +5 -0
  60. data/spec/dummy/config/environments/development.rb +29 -0
  61. data/spec/dummy/config/environments/production.rb +80 -0
  62. data/spec/dummy/config/environments/test.rb +36 -0
  63. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  64. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  65. data/spec/dummy/config/initializers/inflections.rb +16 -0
  66. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  67. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  68. data/spec/dummy/config/initializers/session_store.rb +3 -0
  69. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  70. data/spec/dummy/config/locales/en.yml +23 -0
  71. data/spec/dummy/config/routes.rb +4 -0
  72. data/spec/dummy/public/404.html +58 -0
  73. data/spec/dummy/public/422.html +58 -0
  74. data/spec/dummy/public/500.html +57 -0
  75. data/spec/dummy/public/favicon.ico +0 -0
  76. data/spec/spec_helper.rb +13 -0
  77. data/vendor/assets/fonts/redactor-font.eot +0 -0
  78. data/vendor/assets/javascripts/jquery-ui-timepicker-addon.min.js +5 -0
  79. data/vendor/assets/javascripts/redactor.js +7869 -0
  80. data/vendor/assets/stylesheets/jquery-ui-timepicker-addon.min.css +5 -0
  81. data/vendor/assets/stylesheets/redactor.css.erb +968 -0
  82. metadata +240 -0
@@ -0,0 +1,5 @@
1
+ /*! jQuery Timepicker Addon - v1.4.3 - 2013-11-30
2
+ * http://trentrichardson.com/examples/timepicker
3
+ * Copyright (c) 2013 Trent Richardson; Licensed MIT */
4
+
5
+ .ui-timepicker-div .ui-widget-header{margin-bottom:8px}.ui-timepicker-div dl{text-align:left}.ui-timepicker-div dl dt{float:left;clear:left;padding:0 0 0 5px}.ui-timepicker-div dl dd{margin:0 10px 10px 40%}.ui-timepicker-div td{font-size:90%}.ui-tpicker-grid-label{background:0;border:0;margin:0;padding:0}.ui-timepicker-rtl{direction:rtl}.ui-timepicker-rtl dl{text-align:right;padding:0 5px 0 0}.ui-timepicker-rtl dl dt{float:right;clear:right}.ui-timepicker-rtl dl dd{margin:0 40% 10px 10px}
@@ -0,0 +1,968 @@
1
+ /*
2
+ Icon font
3
+ */
4
+ @font-face {
5
+ font-family: 'RedactorFont';
6
+ src: url('<%= asset_path('redactor-font.eot') %>')
7
+ }
8
+ @font-face {
9
+ font-family: 'RedactorFont';
10
+ src: url(data:application/x-font-ttf;charset=utf-8;base64,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) format('truetype'), url(data:application/font-woff;charset=utf-8;base64,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AAAAFAAEADAAAAAIAAgAAgAAACDmHv/9//8AAAAg5gD//f///+EaAgADAAEAAAAAAAAAAAABAAH//wAPAAEAAAABAACLSUTLXw889QALBAAAAAAAzwh6egAAAADPCHp6////twQBA7cAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAD/////BAEAAQAAAAAAAAAAAAAAAAAAACEAAAAAAgAAAAQAAAAEAAAABAAAAAQAANsEAAAABAAA2gQAAAAEAAASBAAAkgQA//8EAAAABAAAAAQAAAAEAAEkBAAAAAQAAAAEAABJBAAAAAQAANsEAABKBAAASgQAAJIEAAAABAAAAAQAASUEAABJBAAAhQQAAAAEAAAABAAAAAQAAAAAAFAAACEAAAAAAA4ArgABAAAAAAABABgAAAABAAAAAAACAA4AagABAAAAAAADABgALgABAAAAAAAEABgAeAABAAAAAAAFABYAGAABAAAAAAAGAAwARgABAAAAAAAKACgAkAADAAEECQABABgAAAADAAEECQACAA4AagADAAEECQADABgALgADAAEECQAEABgAeAADAAEECQAFABYAGAADAAEECQAGABgAUgADAAEECQAKACgAkABSAGUAZABhAGMAdABvAHIARgBvAG4AdABWAGUAcgBzAGkAbwBuACAAMAAuADAAUgBlAGQAYQBjAHQAbwByAEYAbwBuAHRSZWRhY3RvckZvbnQAUgBlAGQAYQBjAHQAbwByAEYAbwBuAHQAUgBlAGcAdQBsAGEAcgBSAGUAZABhAGMAdABvAHIARgBvAG4AdABHAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('woff');
11
+ font-weight: normal;
12
+ font-style: normal;
13
+ }
14
+ /* =Selection
15
+ -----------------------------------------------------------------------------*/
16
+ .redactor_box ::selection {
17
+ background: #ffff9e;
18
+ }
19
+ .redactor_box ::-moz-selection {
20
+ background: #ffff9e;
21
+ }
22
+ .redactor_box img::selection {
23
+ background: transparent;
24
+ }
25
+ .redactor_box img::-moz-selection {
26
+ background: transparent;
27
+ }
28
+ /*
29
+ BOX
30
+ */
31
+ .redactor_box {
32
+ position: relative;
33
+ overflow: visible;
34
+ background: #fff;
35
+ }
36
+ .redactor_box iframe {
37
+ display: block;
38
+ margin: 0;
39
+ padding: 0;
40
+ border: 1px solid #eee;
41
+ }
42
+ .redactor_box textarea {
43
+ position: relative;
44
+ z-index: 1004;
45
+ display: block;
46
+ overflow: auto;
47
+ margin: 0;
48
+ padding: 0;
49
+ width: 100%;
50
+ outline: none;
51
+ border: none;
52
+ background-color: #222;
53
+ box-shadow: none;
54
+ color: #ccc;
55
+ font-size: 13px;
56
+ font-family: Menlo, Monaco, monospace, sans-serif;
57
+ resize: none;
58
+ }
59
+ .redactor_box textarea:focus {
60
+ outline: none;
61
+ }
62
+ /*
63
+ AIR
64
+
65
+ */
66
+ body .redactor_air {
67
+ position: absolute;
68
+ z-index: 102;
69
+ }
70
+ /*
71
+ FULLSCREEN
72
+ */
73
+ body .redactor_box_fullscreen {
74
+ position: fixed;
75
+ top: 0;
76
+ left: 0;
77
+ z-index: 49000;
78
+ overflow: hidden;
79
+ width: 100%;
80
+ }
81
+ /*
82
+ LINK TOOLTIP
83
+ */
84
+ .redactor-link-tooltip {
85
+ position: absolute;
86
+ z-index: 49999;
87
+ padding: 10px;
88
+ line-height: 1;
89
+ display: inline-block;
90
+ background-color: #000;
91
+ color: #555 !important;
92
+ }
93
+ .redactor-link-tooltip,
94
+ .redactor-link-tooltip a {
95
+ font-size: 12px;
96
+ font-family: Arial, Helvetica, Verdana, Tahoma, sans-serif;
97
+ }
98
+ .redactor-link-tooltip a {
99
+ color: #ccc;
100
+ margin: 0 5px;
101
+ text-decoration: none;
102
+ }
103
+ .redactor-link-tooltip a:hover {
104
+ color: #fff;
105
+ }
106
+ /*
107
+ IMAGE BOX
108
+ */
109
+ #redactor-image-box img {
110
+ width: 100%;
111
+ }
112
+ .redactor_editor {
113
+ position: relative;
114
+ overflow: auto;
115
+ margin: 0 !important;
116
+ padding: 10px 20px;
117
+ padding-bottom: 5px;
118
+ outline: none;
119
+ background: none;
120
+ background: #fff;
121
+ box-shadow: none !important;
122
+ white-space: normal;
123
+ border: 1px solid #eee;
124
+ }
125
+ .redactor_editor:focus {
126
+ outline: none;
127
+ }
128
+ .redactor_editor div,
129
+ .redactor_editor p,
130
+ .redactor_editor ul,
131
+ .redactor_editor ol,
132
+ .redactor_editor table,
133
+ .redactor_editor dl,
134
+ .redactor_editor blockquote,
135
+ .redactor_editor pre,
136
+ .redactor_editor h1,
137
+ .redactor_editor h2,
138
+ .redactor_editor h3,
139
+ .redactor_editor h4,
140
+ .redactor_editor h5,
141
+ .redactor_editor h6 {
142
+ font-family: Arial, Helvetica, Verdana, Tahoma, sans-serif;
143
+ }
144
+ .redactor_editor code,
145
+ .redactor_editor pre {
146
+ font-family: Menlo, Monaco, monospace, sans-serif;
147
+ }
148
+ .redactor_editor div,
149
+ .redactor_editor p,
150
+ .redactor_editor ul,
151
+ .redactor_editor ol,
152
+ .redactor_editor table,
153
+ .redactor_editor dl,
154
+ .redactor_editor blockquote,
155
+ .redactor_editor pre {
156
+ font-size: 14px;
157
+ line-height: 1.6em;
158
+ }
159
+ .redactor_editor a {
160
+ color: #15c !important;
161
+ text-decoration: underline !important;
162
+ }
163
+ .redactor_editor .redactor_placeholder {
164
+ color: #999 !important;
165
+ display: block !important;
166
+ }
167
+ /*
168
+ TYPOGRAPHY
169
+ */
170
+ .redactor_editor object,
171
+ .redactor_editor embed,
172
+ .redactor_editor video,
173
+ .redactor_editor img {
174
+ max-width: 100%;
175
+ width: auto;
176
+ }
177
+ .redactor_editor video,
178
+ .redactor_editor img {
179
+ height: auto;
180
+ }
181
+ .redactor_editor div,
182
+ .redactor_editor p,
183
+ .redactor_editor ul,
184
+ .redactor_editor ol,
185
+ .redactor_editor table,
186
+ .redactor_editor dl,
187
+ .redactor_editor blockquote,
188
+ .redactor_editor pre {
189
+ margin: 0;
190
+ margin-bottom: 10px !important;
191
+ border: none;
192
+ background: none !important;
193
+ box-shadow: none !important;
194
+ }
195
+ .redactor_editor iframe,
196
+ .redactor_editor object,
197
+ .redactor_editor hr {
198
+ margin-bottom: 15px !important;
199
+ }
200
+ .redactor_editor blockquote {
201
+ margin-left: 1.5em !important;
202
+ padding-left: 0 !important;
203
+ color: #777;
204
+ font-style: italic !important;
205
+ }
206
+ .redactor_editor ul,
207
+ .redactor_editor ol {
208
+ padding-left: 2em !important;
209
+ }
210
+ .redactor_editor ul ul,
211
+ .redactor_editor ol ol,
212
+ .redactor_editor ul ol,
213
+ .redactor_editor ol ul {
214
+ margin: 2px !important;
215
+ padding: 0 !important;
216
+ padding-left: 2em !important;
217
+ border: none;
218
+ }
219
+ .redactor_editor dl dt {
220
+ font-weight: bold;
221
+ }
222
+ .redactor_editor dd {
223
+ margin-left: 1em;
224
+ }
225
+ .redactor_editor table {
226
+ border-collapse: collapse;
227
+ font-size: 1em !important;
228
+ }
229
+ .redactor_editor table td {
230
+ padding: 5px !important;
231
+ border: 1px solid #ddd;
232
+ vertical-align: top;
233
+ }
234
+ .redactor_editor table thead td {
235
+ border-bottom: 2px solid #000 !important;
236
+ font-weight: bold !important;
237
+ }
238
+ .redactor_editor code {
239
+ background-color: #d8d7d7 !important;
240
+ }
241
+ .redactor_editor pre {
242
+ overflow: auto;
243
+ padding: 1em !important;
244
+ border: 1px solid #ddd !important;
245
+ border-radius: 3px !important;
246
+ background: #f8f8f8 !important;
247
+ white-space: pre;
248
+ font-size: 90% !important;
249
+ }
250
+ .redactor_editor hr {
251
+ display: block;
252
+ height: 1px;
253
+ border: 0;
254
+ border-top: 1px solid #ccc;
255
+ }
256
+ /*
257
+ HEADERS
258
+ */
259
+ .redactor_editor h1,
260
+ .redactor_editor h2,
261
+ .redactor_editor h3,
262
+ .redactor_editor h4,
263
+ .redactor_editor h5,
264
+ .redactor_editor h6 {
265
+ margin-top: 0 !important;
266
+ padding: 0 !important;
267
+ background: none;
268
+ color: #000;
269
+ font-weight: bold;
270
+ }
271
+ .redactor_editor h1 {
272
+ font-size: 36px !important;
273
+ line-height: 1.111em !important;
274
+ margin-bottom: .15em !important;
275
+ }
276
+ .redactor_editor h2 {
277
+ font-size: 30px !important;
278
+ line-height: 1.111em !important;
279
+ margin-bottom: .25em !important;
280
+ }
281
+ .redactor_editor h3 {
282
+ font-size: 24px !important;
283
+ line-height: 1.333em !important;
284
+ margin-bottom: .2em !important;
285
+ }
286
+ .redactor_editor h4 {
287
+ font-size: 18px !important;
288
+ line-height: 1.5em !important;
289
+ margin-bottom: .2em !important;
290
+ }
291
+ .redactor_editor h5 {
292
+ font-size: 1em !important;
293
+ line-height: 1.6em !important;
294
+ margin-bottom: .25em !important;
295
+ }
296
+ .redactor_editor h6 {
297
+ font-size: .8em !important;
298
+ line-height: 1.6em !important;
299
+ text-transform: uppercase;
300
+ margin-bottom: .3em !important;
301
+ }
302
+ /*
303
+ TOOLBAR
304
+ */
305
+ .redactor_toolbar {
306
+ position: relative;
307
+ top: 0;
308
+ left: 0;
309
+ margin: 0 !important;
310
+ padding: 0 !important;
311
+ list-style: none !important;
312
+ font-size: 14px !important;
313
+ font-family: Arial, Helvetica, Verdana, Tahoma, sans-serif;
314
+ line-height: 1 !important;
315
+ background: #fff;
316
+ border: none;
317
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
318
+ z-index: 3;
319
+ }
320
+ .redactor_toolbar:after {
321
+ content: "";
322
+ display: table;
323
+ clear: both;
324
+ }
325
+ .redactor_toolbar.redactor-toolbar-overflow {
326
+ overflow-y: auto;
327
+ height: 29px;
328
+ white-space: nowrap;
329
+ }
330
+ .redactor_toolbar.redactor-toolbar-external {
331
+ z-index: 999;
332
+ box-shadow: none;
333
+ border: 1px solid rgba(0, 0, 0, 0.1);
334
+ }
335
+ body .redactor_air .redactor_toolbar {
336
+ padding-right: 2px !important;
337
+ }
338
+ .redactor_toolbar li {
339
+ vertical-align: top;
340
+ display: inline-block;
341
+ margin: 0 !important;
342
+ padding: 0 !important;
343
+ outline: none;
344
+ list-style: none !important;
345
+ -webkit-box-sizing: content-box;
346
+ -moz-box-sizing: content-box;
347
+ box-sizing: content-box;
348
+ }
349
+ .redactor_toolbar li a {
350
+ display: block;
351
+ color: #333;
352
+ text-align: center;
353
+ padding: 9px 10px;
354
+ outline: none;
355
+ border: none;
356
+ text-decoration: none;
357
+ cursor: pointer;
358
+ zoom: 1;
359
+ -webkit-box-sizing: content-box;
360
+ -moz-box-sizing: content-box;
361
+ box-sizing: content-box;
362
+ }
363
+ .redactor_toolbar li a:hover {
364
+ outline: none;
365
+ background-color: #1f78d8;
366
+ color: #fff;
367
+ }
368
+ .redactor_toolbar li a:hover i:before {
369
+ color: #fff;
370
+ }
371
+ .redactor_toolbar li a:active,
372
+ .redactor_toolbar li a.redactor_act {
373
+ outline: none;
374
+ background-color: #ccc;
375
+ color: #444;
376
+ }
377
+ .redactor_toolbar li a.redactor-btn-image {
378
+ width: 14px;
379
+ height: 14px;
380
+ background-position: center center;
381
+ background-repeat: no-repeat;
382
+ }
383
+ .redactor_button_disabled {
384
+ filter: alpha(opacity=30);
385
+ -moz-opacity: 0.3;
386
+ opacity: 0.3;
387
+ }
388
+ .redactor_button_disabled:hover {
389
+ outline: none;
390
+ background-color: transparent !important;
391
+ cursor: default;
392
+ }
393
+ .redactor_toolbar li a.fa-redactor-btn {
394
+ display: inline-block;
395
+ padding: 9px 10px 8px 10px;
396
+ line-height: 1;
397
+ }
398
+ .redactor_toolbar.redactor-toolbar-typewriter {
399
+ box-shadow: none;
400
+ background: rgba(240, 240, 240, 0.9);
401
+ }
402
+ .redactor_toolbar.redactor-toolbar-typewriter li a:hover {
403
+ outline: none;
404
+ background-color: #1f78d8;
405
+ color: #fff;
406
+ }
407
+ .redactor_toolbar.redactor-toolbar-typewriter li a:active,
408
+ .redactor_toolbar.redactor-toolbar-typewriter li a.redactor_act {
409
+ outline: none;
410
+ background-color: #ccc;
411
+ color: #444;
412
+ }
413
+ .re-icon {
414
+ font-family: 'RedactorFont';
415
+ speak: none;
416
+ font-style: normal;
417
+ font-weight: normal;
418
+ font-variant: normal;
419
+ text-transform: none;
420
+ line-height: 1;
421
+ -webkit-font-smoothing: antialiased;
422
+ -moz-osx-font-smoothing: grayscale;
423
+ }
424
+ .re-icon i:before {
425
+ position: relative;
426
+ font-size: 14px;
427
+ }
428
+ .re-video:before {
429
+ content: "\e600";
430
+ }
431
+ .re-unorderedlist:before {
432
+ content: "\e601";
433
+ }
434
+ .re-undo:before {
435
+ content: "\e602";
436
+ }
437
+ .re-underline:before {
438
+ content: "\e603";
439
+ }
440
+ .re-textdirection:before {
441
+ content: "\e604";
442
+ }
443
+ .re-fontcolor:before {
444
+ content: "\e605";
445
+ }
446
+ .re-table:before {
447
+ content: "\e606";
448
+ }
449
+ .re-redo:before {
450
+ content: "\e607";
451
+ }
452
+ .re-quote:before {
453
+ content: "\e608";
454
+ }
455
+ .re-outdent:before {
456
+ content: "\e609";
457
+ }
458
+ .re-orderedlist:before {
459
+ content: "\e60a";
460
+ }
461
+ .re-link:before {
462
+ content: "\e60b";
463
+ }
464
+ .re-horizontalrule:before {
465
+ content: "\e60c";
466
+ }
467
+ .re-italic:before {
468
+ content: "\e60d";
469
+ }
470
+ .re-indent:before {
471
+ content: "\e60e";
472
+ }
473
+ .re-image:before {
474
+ content: "\e60f";
475
+ }
476
+ .re-fullscreen:before {
477
+ content: "\e610";
478
+ }
479
+ .re-normalscreen:before {
480
+ content: "\e611";
481
+ }
482
+ .re-formatting:before {
483
+ content: "\e612";
484
+ }
485
+ .re-fontsize:before {
486
+ content: "\e613";
487
+ }
488
+ .re-fontfamily:before {
489
+ content: "\e614";
490
+ }
491
+ .re-deleted:before {
492
+ content: "\e615";
493
+ }
494
+ .re-html:before {
495
+ content: "\e616";
496
+ }
497
+ .re-clips:before {
498
+ content: "\e617";
499
+ }
500
+ .re-bold:before {
501
+ content: "\e618";
502
+ }
503
+ .re-backcolor:before {
504
+ content: "\e619";
505
+ }
506
+ .re-file:before {
507
+ content: "\e61a";
508
+ }
509
+ .re-alignright:before {
510
+ content: "\e61b";
511
+ }
512
+ .re-alignment:before,
513
+ .re-alignleft:before {
514
+ content: "\e61c";
515
+ }
516
+ .re-alignjustify:before {
517
+ content: "\e61d";
518
+ }
519
+ .re-aligncenter:before {
520
+ content: "\e61e";
521
+ }
522
+ /*
523
+ Toolbar classes
524
+ */
525
+ .redactor_format_blockquote {
526
+ padding-left: 10px;
527
+ color: #666 !important;
528
+ font-style: italic;
529
+ }
530
+ .redactor_format_pre {
531
+ font-family: monospace, sans-serif;
532
+ }
533
+ .redactor_format_h1,
534
+ .redactor_format_h2,
535
+ .redactor_format_h3,
536
+ .redactor_format_h4,
537
+ .redactor_format_h5 {
538
+ font-weight: bold;
539
+ }
540
+ .redactor_format_h1 {
541
+ font-size: 30px;
542
+ line-height: 36px;
543
+ }
544
+ .redactor_format_h2 {
545
+ font-size: 24px;
546
+ line-height: 36px;
547
+ }
548
+ .redactor_format_h3 {
549
+ font-size: 20px;
550
+ line-height: 30px;
551
+ }
552
+ .redactor_format_h4 {
553
+ font-size: 16px;
554
+ line-height: 26px;
555
+ }
556
+ .redactor_format_h5 {
557
+ font-size: 14px;
558
+ line-height: 23px;
559
+ }
560
+ .redactor-toolbar-typewriter .redactor_dropdown .redactor_format_h1,
561
+ .redactor-toolbar-typewriter .redactor_dropdown .redactor_format_h2,
562
+ .redactor-toolbar-typewriter .redactor_dropdown .redactor_format_h3,
563
+ .redactor-toolbar-typewriter .redactor_dropdown .redactor_format_h4,
564
+ .redactor-toolbar-typewriter .redactor_dropdown .redactor_format_h5 {
565
+ font-size: 1em;
566
+ line-height: 1.6em;
567
+ text-transform: uppercase;
568
+ }
569
+ .redactor-toolbar-typewriter .redactor_dropdown .redactor_format_h2 {
570
+ font-size: .85em;
571
+ }
572
+ /*
573
+ Typewriter
574
+ */
575
+ .redactor_editor.redactor-editor-typewriter {
576
+ background: #f5f5f5 !important;
577
+ padding: 25px 50px !important;
578
+ }
579
+ .redactor_editor.redactor-editor-typewriter div,
580
+ .redactor_editor.redactor-editor-typewriter p,
581
+ .redactor_editor.redactor-editor-typewriter ul,
582
+ .redactor_editor.redactor-editor-typewriter ol,
583
+ .redactor_editor.redactor-editor-typewriter table,
584
+ .redactor_editor.redactor-editor-typewriter dl,
585
+ .redactor_editor.redactor-editor-typewriter blockquote,
586
+ .redactor_editor.redactor-editor-typewriter pre,
587
+ .redactor_editor.redactor-editor-typewriter h1,
588
+ .redactor_editor.redactor-editor-typewriter h2,
589
+ .redactor_editor.redactor-editor-typewriter h3,
590
+ .redactor_editor.redactor-editor-typewriter h4,
591
+ .redactor_editor.redactor-editor-typewriter h5,
592
+ .redactor_editor.redactor-editor-typewriter h6 {
593
+ font-family: 'Courier New', 'Lucida Console', Consolas, Monaco, monospace, sans-serif;
594
+ font-size: 18px !important;
595
+ line-height: 1.5em !important;
596
+ margin-bottom: 1.5em !important;
597
+ }
598
+ .redactor_editor.redactor-editor-typewriter h2 {
599
+ font-size: 14px !important;
600
+ }
601
+ .redactor_editor.redactor-editor-typewriter h1,
602
+ .redactor_editor.redactor-editor-typewriter h2,
603
+ .redactor_editor.redactor-editor-typewriter h3,
604
+ .redactor_editor.redactor-editor-typewriter h4,
605
+ .redactor_editor.redactor-editor-typewriter h5,
606
+ .redactor_editor.redactor-editor-typewriter h6 {
607
+ text-transform: uppercase;
608
+ }
609
+ .redactor_editor.redactor-editor-typewriter a {
610
+ color: #000 !important;
611
+ text-decoration: underline !important;
612
+ }
613
+ /*
614
+ WYM
615
+ */
616
+ .redactor_editor.redactor_editor_wym {
617
+ padding: 10px 7px 0 7px !important;
618
+ background: #f6f6f6 !important;
619
+ }
620
+ .redactor_editor.redactor_editor_wym div,
621
+ .redactor_editor.redactor_editor_wym p,
622
+ .redactor_editor.redactor_editor_wym ul,
623
+ .redactor_editor.redactor_editor_wym ol,
624
+ .redactor_editor.redactor_editor_wym table,
625
+ .redactor_editor.redactor_editor_wym dl,
626
+ .redactor_editor.redactor_editor_wym pre,
627
+ .redactor_editor.redactor_editor_wym h1,
628
+ .redactor_editor.redactor_editor_wym h2,
629
+ .redactor_editor.redactor_editor_wym h3,
630
+ .redactor_editor.redactor_editor_wym h4,
631
+ .redactor_editor.redactor_editor_wym h5,
632
+ .redactor_editor.redactor_editor_wym h6,
633
+ .redactor_editor.redactor_editor_wym blockquote {
634
+ margin-top: 0;
635
+ margin-bottom: 5px !important;
636
+ padding: 10px !important;
637
+ border: 1px solid #e4e4e4 !important;
638
+ background-color: #fff !important;
639
+ }
640
+ .redactor_editor.redactor_editor_wym blockquote:before {
641
+ content: '';
642
+ }
643
+ .redactor_editor.redactor_editor_wym img {
644
+ position: relative;
645
+ z-index: 2;
646
+ }
647
+ .redactor_editor.redactor_editor_wym div {
648
+ border: 1px dotted #aaa !important;
649
+ }
650
+ .redactor_editor.redactor_editor_wym pre {
651
+ border: 2px dashed #e4e4e4 !important;
652
+ background-color: #f8f8f8 !important;
653
+ }
654
+ .redactor_editor.redactor_editor_wym ul,
655
+ .redactor_editor.redactor_editor_wym ol {
656
+ padding-left: 2em !important;
657
+ }
658
+ .redactor_editor.redactor_editor_wym ul li ul,
659
+ .redactor_editor.redactor_editor_wym ol li ul,
660
+ .redactor_editor.redactor_editor_wym ul li ol,
661
+ .redactor_editor.redactor_editor_wym ol li ol {
662
+ border: none !important;
663
+ }
664
+ /*
665
+ DROPDOWN
666
+ */
667
+ .redactor_dropdown {
668
+ position: absolute;
669
+ top: 28px;
670
+ left: 0;
671
+ z-index: 2004;
672
+ padding: 10px;
673
+ width: 200px;
674
+ background-color: #fff;
675
+ box-shadow: 0 1px 5px #bbb;
676
+ font-size: 13px;
677
+ font-family: Helvetica, Arial, Verdana, Tahoma, sans-serif;
678
+ line-height: 21px;
679
+ }
680
+ .redactor-toolbar-typewriter .redactor_dropdown {
681
+ font-family: 'Courier New', 'Lucida Console', Consolas, Monaco, monospace, sans-serif;
682
+ background-color: #f5f5f5;
683
+ }
684
+ .redactor_separator_drop {
685
+ padding: 0 !important;
686
+ border-top: 1px solid #ddd;
687
+ font-size: 0;
688
+ line-height: 0;
689
+ }
690
+ .redactor_dropdown a {
691
+ display: block;
692
+ padding: 3px 5px;
693
+ color: #000;
694
+ text-decoration: none;
695
+ }
696
+ .redactor_dropdown a:hover {
697
+ background-color: #dde4ef;
698
+ color: #444 !important;
699
+ text-decoration: none;
700
+ }
701
+ /*
702
+ MODAL
703
+ */
704
+ #redactor_modal_overlay {
705
+ position: fixed;
706
+ top: 0;
707
+ left: 0;
708
+ z-index: 50000;
709
+ margin: auto;
710
+ width: 100%;
711
+ height: 100%;
712
+ background-color: #000 !important;
713
+ filter: alpha(opacity=30);
714
+ -moz-opacity: 0.3;
715
+ opacity: 0.3;
716
+ }
717
+ #redactor_modal {
718
+ position: fixed;
719
+ top: 50%;
720
+ left: 50%;
721
+ z-index: 50001;
722
+ padding: 0;
723
+ background: #fff;
724
+ color: #000;
725
+ font-size: 12px !important;
726
+ font-family: Arial, Helvetica, Verdana, Tahoma, sans-serif;
727
+ box-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
728
+ }
729
+ #redactor_modal header {
730
+ padding: 20px 30px 5px 30px;
731
+ font-size: 16px;
732
+ }
733
+ #redactor_modal section {
734
+ padding: 20px 30px;
735
+ }
736
+ #redactor_modal label {
737
+ display: block !important;
738
+ float: none !important;
739
+ margin: 10px 0 3px 0 !important;
740
+ padding: 0 !important;
741
+ font-size: 12px !important;
742
+ }
743
+ #redactor_modal footer:after {
744
+ content: "";
745
+ display: table;
746
+ clear: both;
747
+ }
748
+ #redactor_modal footer div {
749
+ float: left;
750
+ }
751
+ #redactor_modal input[type="radio"],
752
+ #redactor_modal input[type="checkbox"] {
753
+ position: relative;
754
+ top: -1px;
755
+ }
756
+ #redactor_modal input[type="text"],
757
+ #redactor_modal input[type="password"],
758
+ #redactor_modal input[type="email"],
759
+ #redactor_modal textarea {
760
+ position: relative;
761
+ z-index: 2;
762
+ margin: 0;
763
+ padding: 1px 2px;
764
+ height: 23px;
765
+ border: 1px solid #ccc;
766
+ border-radius: 1px;
767
+ background-color: white;
768
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
769
+ color: #333;
770
+ font-size: 13px;
771
+ font-family: Arial, Helvetica, Verdana, Tahoma, sans-serif;
772
+ line-height: 1;
773
+ -moz-transition: border 0.3s ease-in;
774
+ transition: border 0.3s ease-in;
775
+ }
776
+ #redactor_modal textarea {
777
+ display: block;
778
+ margin-top: 4px;
779
+ line-height: 1.4em;
780
+ }
781
+ #redactor_modal input:focus,
782
+ #redactor_modal textarea:focus {
783
+ outline: none;
784
+ border-color: #5ca9e4;
785
+ box-shadow: 0 0 0 2px rgba(70, 161, 231, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2) inset;
786
+ }
787
+ #redactor_modal_close {
788
+ position: absolute;
789
+ top: 5px;
790
+ right: 3px;
791
+ width: 20px;
792
+ height: 20px;
793
+ color: #999;
794
+ font-size: 26px;
795
+ cursor: pointer;
796
+ }
797
+ #redactor_modal_close:hover {
798
+ color: #000;
799
+ }
800
+ .redactor_input {
801
+ width: 99%;
802
+ font-size: 14px;
803
+ }
804
+ .redactor_modal_box {
805
+ overflow: auto;
806
+ margin-bottom: 10px;
807
+ height: 350px;
808
+ }
809
+ #redactor_image_box {
810
+ overflow: auto;
811
+ margin-bottom: 10px;
812
+ height: 270px;
813
+ }
814
+ #redactor_image_box_select {
815
+ display: block;
816
+ margin-bottom: 15px !important;
817
+ width: 200px;
818
+ }
819
+ #redactor_image_box img {
820
+ margin-right: 10px;
821
+ margin-bottom: 10px;
822
+ max-width: 100px;
823
+ cursor: pointer;
824
+ }
825
+ #redactor_tabs {
826
+ margin-bottom: 18px;
827
+ }
828
+ #redactor_tabs a {
829
+ display: inline-block;
830
+ margin-right: 2px;
831
+ padding: 4px 14px;
832
+ border: 1px solid #d2d2d2;
833
+ border-radius: 3px;
834
+ background: #fff;
835
+ color: #000;
836
+ text-decoration: none;
837
+ line-height: 1;
838
+ }
839
+ #redactor_tabs a:hover,
840
+ #redactor_tabs a.redactor_tabs_act {
841
+ border-color: #eee;
842
+ color: #999 !important;
843
+ text-decoration: none !important;
844
+ }
845
+ #redactor_modal footer button {
846
+ position: relative;
847
+ width: 100%;
848
+ padding: 10px 16px;
849
+ margin: 0;
850
+ outline: none;
851
+ border: none;
852
+ background-color: #ddd;
853
+ color: #000;
854
+ text-align: center;
855
+ text-decoration: none;
856
+ font-weight: normal;
857
+ font-size: 12px;
858
+ font-family: Arial, Helvetica, Verdana, Tahoma, sans-serif;
859
+ line-height: 1;
860
+ cursor: pointer;
861
+ }
862
+ #redactor_modal footer button:hover {
863
+ color: #777;
864
+ background: none;
865
+ background: #bbb;
866
+ text-decoration: none;
867
+ }
868
+ #redactor_modal footer button.redactor_modal_delete_btn {
869
+ background: none;
870
+ color: #fff;
871
+ background-color: #b52525;
872
+ }
873
+ #redactor_modal footer button.redactor_modal_delete_btn:hover {
874
+ color: rgba(255, 255, 255, 0.6);
875
+ background-color: #881b1b;
876
+ }
877
+ #redactor_modal footer button.redactor_modal_action_btn {
878
+ background: none;
879
+ color: #fff;
880
+ background-color: #2461b5;
881
+ }
882
+ #redactor_modal footer button.redactor_modal_action_btn:hover {
883
+ color: rgba(255, 255, 255, 0.6);
884
+ background-color: #1a4580;
885
+ }
886
+ /* Drag and Drop Area */
887
+ .redactor_droparea {
888
+ position: relative;
889
+ margin: auto;
890
+ margin-bottom: 5px;
891
+ width: 100%;
892
+ }
893
+ .redactor_droparea .redactor_dropareabox {
894
+ position: relative;
895
+ z-index: 1;
896
+ padding: 60px 0;
897
+ width: 99%;
898
+ border: 1px dashed #ddd;
899
+ background: #fff;
900
+ text-align: center;
901
+ }
902
+ .redactor_droparea .redactor_dropareabox,
903
+ .redactor_dropalternative {
904
+ color: #555;
905
+ font-size: 12px;
906
+ }
907
+ .redactor_dropalternative {
908
+ margin: 4px 0 2px 0;
909
+ }
910
+ .redactor_dropareabox.hover {
911
+ border-color: #aaa;
912
+ background: #efe3b8;
913
+ }
914
+ .redactor_dropareabox.error {
915
+ border-color: #dcc3c3;
916
+ background: #f7e5e5;
917
+ }
918
+ .redactor_dropareabox.drop {
919
+ border-color: #e0e5d6;
920
+ background: #f4f4ee;
921
+ }
922
+ /* =ProgressBar
923
+ -----------------------------------------------------------------------------*/
924
+ #redactor-progress {
925
+ position: fixed;
926
+ top: 0;
927
+ left: 0;
928
+ width: 100%;
929
+ z-index: 1000000;
930
+ }
931
+ #redactor-progress.redactor-progress-inline {
932
+ position: static;
933
+ margin-bottom: 4px;
934
+ }
935
+ #redactor-progress > span {
936
+ display: block;
937
+ height: 10px;
938
+ width: 100%;
939
+ background-color: #0a8bfb;
940
+ box-shadow: 0 1px 2px rgba(255, 255, 255, 0.9) inset;
941
+ -webkit-background-size: 30px 30px;
942
+ -moz-background-size: 30px 30px;
943
+ background-size: 30px 30px;
944
+ background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0.25, rgba(255, 255, 255, 0.9)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.9)), color-stop(0.75, rgba(255, 255, 255, 0.9)), color-stop(0.75, transparent), to(transparent));
945
+ background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.9) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 75%, transparent 75%, transparent);
946
+ background-image: -moz-linear-gradient(135deg, rgba(255, 255, 255, 0.9) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 75%, transparent 75%, transparent);
947
+ background-image: -ms-linear-gradient(135deg, rgba(255, 255, 255, 0.9) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 75%, transparent 75%, transparent);
948
+ background-image: -o-linear-gradient(135deg, rgba(255, 255, 255, 0.9) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 75%, transparent 75%, transparent);
949
+ background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 75%, transparent 75%, transparent);
950
+ -webkit-animation: animate-stripes 2s linear infinite;
951
+ animation: animate-stripes 2s linear infinite;
952
+ }
953
+ @-webkit-keyframes animate-stripes {
954
+ 0% {
955
+ background-position: 0 0;
956
+ }
957
+ 100% {
958
+ background-position: 60px 0;
959
+ }
960
+ }
961
+ @keyframes animate-stripes {
962
+ 0% {
963
+ background-position: 0 0;
964
+ }
965
+ 100% {
966
+ background-position: 60px 0;
967
+ }
968
+ }