@_sh/strapi-plugin-ckeditor 1.0.1 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,112 +1,84 @@
1
- # CKEditor 5 for Strapi
1
+ <p align="center">
2
+ <img src="https://raw.githubusercontent.com/nshenderov/strapi-plugin-ckeditor/master/assets/ckeditor5.png" alt="CKEditor5-Strapi" width="700" />
3
+ </p>
2
4
 
3
- <img src="./assets/ckeditor1.jpg"/>
4
-
5
- <br/>
6
-
7
- Replaces the default Strapi WYSIWYG editor with a customized build of CKEditor 5 html editor packed with useful plugins.
8
-
9
- The plugin works on custom build of ckeditor based on classic editor build.
10
-
11
- Also, this plugin includes some useful plugins based on those repos so thanks to those guys:
12
- https://github.com/Roslovets-Inc/strapi-plugin-ckeditor5
13
- https://github.com/leknoppix/ckeditor5-fullscreen
14
- https://github.com/gtomato/ckeditor5-strapi-upload-plugin
15
- https://github.com/pshurygin/ckeditor5-font-color
16
-
17
-
5
+ <h1 align="center">CKEditor 5 for Strapi</h1>
18
6
 
19
- ## Plugins
20
-
21
- <br/>
22
- <img src="./assets/ckeditor-toolbar.jpg" width="900"/>
23
- <br/>
24
-
25
- - <b>Lots of default plugins:</b>
26
-
27
- For styling text, images, tables and so on.
28
- <br/>
29
- <br/>
30
-
31
- <img src="./assets/ckeditor-tables.jpg" width="900"/>
32
-
33
- <img src="./assets/ckeditor-d-2.jpg" width="900"/>
34
-
35
- <br/>
36
-
37
- - <b>Fullscreen mode</b>
38
-
7
+ <p align="center">Replaces the default Strapi WYSIWYG editor with a customized build of CKEditor 5 html editor packed with useful plugins.</p>
39
8
 
40
- - <b>Font color picker:</b>
41
-
42
- Gives you ability to choose colors for font styling that's not defined in config from the color palette.
43
-
44
- <br/>
45
-
46
-
47
- <img src="./assets/ckeditor-fontcolor1.jpg" width="200"/>
48
- <img src="./assets/ckeditor-fontcolor3.jpg" width="200"/>
49
-
50
-
51
- - <b>Upload udapter:</b>
52
-
53
- For upload images to your library when you drop an image into the editor.
9
+ ## 👋 Get Started
54
10
 
55
-
56
- - <b>Strapi media library button</b>
11
+ * [Features](#features)
12
+ * [Installation](#installation)
13
+ * [Configuration](#configuration)
14
+ * [Theme customization](#themecustomization)
15
+ * [Requirements](#requirements)
16
+ * [Thanks](#thanks)
57
17
 
58
-
59
- - <b>Also supports strapi theme swithing</b>
18
+ ## <a id="features"></a>✨ Features
19
+ This plugin works on custom build of CKEditor 5 packed with useful plugins.
20
+ * **Lots of default plugins:** for styling text, images, tables and so on.
21
+ * **Font color picker:** choose colors for font styling that's not defined in config from the color palette.
22
+ * **Upload adapter for Strapi:** for upload images to your library when you drop an image into the editor.
23
+ * **Fullscreen mode button.**
24
+ * **Strapi media library button.**
25
+ * **Supports strapi theme swithing.**
26
+ * **Supports responsive images:** plugin adds srcset attribute to images based on their `formats` if responsive enable in strapi settings.
60
27
 
61
- - <b>Supports responsive images - plugin adds srcset attribute to images based on their "formats"</b>
28
+ ## <a id="installation"></a>🔧 Installation
62
29
 
30
+ Inside your Strapi app, add the package:
63
31
 
64
- ## How to install
65
- Install the dependency via npm
66
- ```
32
+ With `npm`:
33
+ ```bash
67
34
  npm install @_sh/strapi-plugin-ckeditor
68
35
  ```
69
- or yarn
70
- ```
36
+ With `yarn`:
37
+ ```bash
71
38
  yarn add @_sh/strapi-plugin-ckeditor
72
39
  ```
73
- In ./config/plugins.js file add
74
- ```
40
+
41
+ In `config/plugins.js` file add:
42
+ ```js
75
43
  ckeditor: true
76
44
  ```
77
- Then run build
45
+
46
+ If you do not yet have this file, then create and add:
47
+ ```js
48
+ module.exports = () => {
49
+ return {
50
+ ckeditor: true
51
+ }
52
+ }
78
53
  ```
54
+
55
+ Then run build:
56
+ ```bash
79
57
  npm run build
80
58
  ```
59
+
81
60
  or
82
- ```
61
+ ```bash
83
62
  yarn build
84
63
  ```
85
64
 
86
- ## How to customize
87
-
88
- Via config in plugins.js
89
-
90
- Ckeditor settings should be defined in <b>config.editor</b> field
91
-
92
- Read more about configuration https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/configuration.html
93
-
65
+ ## <a id="configuration"></a>🔧 Configuration
66
+ CKEditor config should be defined in `config.editor` field.
94
67
 
95
- <details>
96
- <summary><b>Default config</b></summary>
97
-
98
-
99
- ```javascript
68
+ Learn more about configuration from [official documentation](https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/configuration.html).
100
69
 
101
- ckeditor: {
102
- enabled: true,
103
- config:{
70
+ **Default configuration:**
71
+ ```js
72
+ // plugins.js
73
+ module.exports = () => {
74
+ return {
75
+ ckeditor: {
76
+ enabled: true,
77
+ config:{
104
78
  plugin:{
105
- // styles applies to editor container
106
- styles:``
79
+ styles:` // styles applied to editor container `
107
80
  },
108
- // editor default config
109
- editor:{
81
+ editor:{ // editor default config
110
82
  toolbar: {
111
83
  items: [
112
84
  'paragraph',
@@ -276,706 +248,66 @@ Via config in plugins.js
276
248
  }
277
249
  }
278
250
  }
279
- ```
280
-
281
- </details>
282
- <br/>
283
-
284
- If you want to customize editor styles you should define styles in <b>config.plugin.styles</b> field it will replace default styles applied to the editor
285
-
286
- Since Strapi resets css styles, it needs some styles to revert back, those styles defined below also check https://ckeditor.com/docs/ckeditor5/latest/installation/advanced/content-styles.html
287
-
288
- Also for theme colors switching this plugin uses css variables depending on html data-theme attribute, e.g. html[data-theme='light'] or html[data-theme='dark']
289
-
290
- More info about theming https://ckeditor.com/docs/ckeditor5/latest/framework/guides/deep-dive/ui/theme-customization.html
291
-
292
-
293
- <details>
294
- <summary><b>Example of default colour variables for the light theme</b></summary>
295
-
296
- ```css
297
- html[data-theme='light'] {
298
- --ck-color-editor-base-text:#1A1A1A;
299
- /* Overrides the border radius setting in the theme. */
300
- --ck-border-radius: 4px;
301
-
302
- /* Helper variables to avoid duplication in the colors. */
303
- --ck-color-base-border: #EAEAEF;
304
- --ck-color-base-background:#ffffff;
305
- --ck-custom-background: #ffffff;
306
- --ck-custom-foreground: #dedede;
307
- --ck-custom-border: #EAEAEF;
308
- --ck-custom-white: hsl(0, 0%, 100%);
309
-
310
- --ck-color-focus-outer-shadow:#F0F0FF;
311
-
312
- --ck-color-base-focus: #bbbaf1;
313
- --ck-color-base-active: #F0F0FF;
314
- --ck-color-base-active-focus: #e2e2fd;
315
- /* -- Overrides generic colors. ------------------------------------------------------------- */
316
-
317
- --ck-color-base-foreground: var(--ck-custom-background);
318
- --ck-color-focus-border: #4945FF;
319
- --ck-color-text: #32324D;
320
- --ck-color-shadow-drop: hsla(250, 31%, 80%, 0.1);
321
- --ck-color-shadow-inner: hsla(250, 31%, 80%, 0.1);
322
-
323
- /* -- Overrides the default .ck-button class colors. ---------------------------------------- */
324
-
325
- --ck-color-button-default-background: var(--ck-custom-background);
326
- --ck-color-button-default-hover-background: #F0F0FF;
327
- --ck-color-button-default-active-background: #dedefb;
328
- --ck-color-button-default-active-shadow: #dedefb;
329
- --ck-color-button-default-disabled-background: var(--ck-custom-background);
330
-
331
- --ck-color-button-on-background: #F0F0FF;
332
- --ck-color-button-on-hover-background: #dbdbff;
333
- --ck-color-button-on-active-background: #cdcdf8;
334
- --ck-color-button-on-active-shadow: #cdcdf8;
335
- --ck-color-button-on-disabled-background: var(--ck-custom-foreground);
336
-
337
- --ck-color-button-action-background: hsl(168, 76%, 42%);
338
- --ck-color-button-action-hover-background: hsl(168, 76%, 38%);
339
- --ck-color-button-action-active-background: hsl(168, 76%, 36%);
340
- --ck-color-button-action-active-shadow: hsl(168, 75%, 34%);
341
- --ck-color-button-action-disabled-background: hsl(168, 76%, 42%);
342
- --ck-color-button-action-text: var(--ck-custom-white);
343
-
344
- --ck-color-button-save: hsl(120, 100%, 46%);
345
- --ck-color-button-cancel: hsl(15, 100%, 56%);
346
-
347
- /* -- Overrides the default .ck-dropdown class colors. -------------------------------------- */
348
-
349
- --ck-color-dropdown-panel-background: var(--ck-custom-background);
350
- --ck-color-dropdown-panel-border: var(--ck-custom-foreground);
351
-
352
- /* -- Overrides the default .ck-splitbutton class colors. ----------------------------------- */
353
-
354
- --ck-color-split-button-hover-background: var(--ck-color-button-default-hover-background);
355
- --ck-color-split-button-hover-border: var(--ck-custom-foreground);
356
-
357
- /* -- Overrides the default .ck-input class colors. ----------------------------------------- */
358
-
359
- --ck-color-input-background: var(--ck-custom-background);
360
- --ck-color-input-border: hsl(257, 3%, 43%);
361
- --ck-color-input-text: hsl(0, 0%, 98%);
362
- --ck-color-input-disabled-background: hsl(0, 0%, 97%);
363
- --ck-color-input-disabled-border: rgb(214, 214, 214);
364
- --ck-color-input-disabled-text: hsl(0, 0%, 78%);
365
-
366
- /* -- Overrides the default .ck-labeled-field-view class colors. ---------------------------- */
367
-
368
- --ck-color-labeled-field-label-background: var(--ck-custom-background);
369
-
370
- /* -- Overrides the default .ck-list class colors. ------------------------------------------ */
371
-
372
- --ck-color-list-background: var(--ck-custom-background);
373
- --ck-color-list-button-hover-background: #f4f4fb;
374
- --ck-color-list-button-on-background: var(--ck-color-base-active);
375
- --ck-color-list-button-on-background-focus: var(--ck-color-base-active-focus);
376
- --ck-color-list-button-on-text: #271FE2;
377
-
378
- /* -- Overrides the default .ck-balloon-panel class colors. --------------------------------- */
379
-
380
- --ck-color-panel-background: var(--ck-custom-background);
381
- --ck-color-panel-border: var(--ck-custom-border);
382
-
383
- /* -- Overrides the default .ck-toolbar class colors. --------------------------------------- */
384
-
385
- --ck-color-toolbar-background: var(--ck-custom-background);
386
- --ck-color-toolbar-border: var(--ck-custom-border);
387
-
388
- /* -- Overrides the default .ck-tooltip class colors. --------------------------------------- */
389
-
390
- --ck-color-tooltip-background: #3a3955;
391
- --ck-color-tooltip-text: hsl(0, 0%, 93%);
392
-
393
- /* -- Overrides the default colors used by the ckeditor5-image package. --------------------- */
394
-
395
- --ck-color-image-caption-background: hsl(0, 0%, 97%);
396
- --ck-color-image-caption-text: hsl(0, 0%, 20%);
397
-
398
- /* -- Overrides the default colors used by the ckeditor5-widget package. -------------------- */
399
-
400
- --ck-color-widget-blurred-border: #cfcffa;
401
- --ck-color-widget-hover-border: #c9c9e4;
402
- --ck-color-widget-editable-focus-background: var(--ck-custom-white);
251
+ }
252
+ }
253
+ ```
254
+ ## <a id="themecustomization"></a>💅 Theme customization
255
+ If you want to customize editor styles you should define styles in `config.plugin.styles` field it will replace default styles applied to the editor.
403
256
 
404
- /* -- Overrides the default colors used by the ckeditor5-link package. ---------------------- */
257
+ Since Strapi resets css styles, it needs some styles to revert back, these styles defined below, also check [official documentation](https://ckeditor.com/docs/ckeditor5/latest/installation/advanced/content-styles.html).
405
258
 
406
- --ck-color-link-default: hsl(209, 89%, 33%);
259
+ For theme colors switching this plugin uses css variables depending on html data-theme attribute, e.g. `html[data-theme='light']` or `html[data-theme='dark']`
407
260
 
408
- }
409
- ```
261
+ [More info about theming](https://ckeditor.com/docs/ckeditor5/latest/framework/guides/deep-dive/ui/theme-customization.html)
410
262
 
411
- </details>
263
+ [**👔 Default styles**](https://github.com/nshenderov/strapi-plugin-ckeditor/blob/master/admin/src/components/CKEditor/styles.js#L3-L517)
412
264
 
413
- <details>
414
- <summary><b>Example of customizing</b></summary>
415
-
416
-
417
-
418
- ```javascript
419
- # plugins.js
265
+ [**🎨 Default colour variables**](https://github.com/nshenderov/strapi-plugin-ckeditor/blob/master/admin/src/components/CKEditor/theme-colors.css#L105-L333)
420
266
 
267
+ **Example of customization:**
268
+ ```js
269
+ // plugins.js
421
270
  const defStyles = require('./styles.js')
422
271
 
423
- ckeditor: {
424
- enabled: true,
425
- config:{
426
- plugin:{
427
- // styles aplyies to editor container
428
- styles:`
429
- ${defStyles()}
430
- --ck-color-editor-base-text:red;
431
- `
432
- },
433
- // editor default config
434
- editor:{
435
- //...
436
- }
437
-
438
- }
439
- }
440
-
441
- # styles.js
442
-
443
- const defStyles = () =>`
444
- ### all default styles from spoiler below ###
272
+ module.exports = () => {
273
+ return {
274
+ ckeditor: {
275
+ enabled: true,
276
+ config:{
277
+ plugin:{
278
+ // styles applied to editor container
279
+ styles:`
280
+ ${defStyles()}
281
+ --ck-color-editor-base-text:red;
282
+ `
283
+ },
284
+ // editor default config
285
+ editor:{
286
+ //...
287
+ }
288
+ }
289
+ }
290
+ }
291
+ }
292
+
293
+ // styles.js
294
+ const defStyles = () =>`
295
+
296
+ ### All default styles ###
445
297
  `
446
- module.exports = defStyles;
447
-
448
- ```
449
-
450
- </details>
451
- <details>
452
- <summary><b>Default styles</b></summary>
453
-
454
-
455
-
456
- ```css
457
- .ck-editor__main {
458
- --ck-font-face:"Source Sans Pro",system-ui,Roboto,"Helvetica Neue","Helvetica",Arial,sans-serif;
459
- min-height: ${200 / 16}em;
460
- color:var(--ck-color-editor-base-text);
461
- font-family:var(--ck-font-face);
462
- > div {
463
- min-height: ${200 / 16}em;
464
- }
465
- .ck-editor__editable {
466
- line-height: initial;
467
- }
468
-
469
- div, applet, object, iframe,
470
- h1, h2,h3, h4, h5,h6, p, span,
471
- pre, a, abbr, acronym,
472
- address, big, cite, code, del, dfn,
473
- em, img, ins, kbd, q, s, samp, small,
474
- strike, strong, sub, sup, tt, var,
475
- b, u, i, center, dl, dt, dd, ol,
476
- ul, li, fieldset, form, label, legend,
477
- table, caption, tbody, tfoot, thead,
478
- tr, th, td, article, aside, canvas,
479
- details, embed, figure, figcaption,
480
- footer, header, hgroup, menu, nav, output,
481
- ruby, section, summary, time, mark, audio, video {
482
- font: revert;
483
- margin:revert;
484
- font-family:revert;
485
- }
486
- h1, .ck-heading_h1_b {
487
- font-size: 2.36em;
488
- line-height: 1.33em;
489
- padding-top: 1em;
490
- margin-bottom: 1.67em;
491
- font-weight: 400;
492
- }
493
- h2, .ck-heading_h2_b {
494
- font-size: 1.68em;
495
- line-height: 1.68em;
496
- padding-top: 0.8em;
497
- margin-bottom: 0.4em;
498
- padding-bottom: 0.2em;
499
- font-weight: 400;
500
- }
501
- h3, .ck-heading_h3_b{
502
- font-size: 1.36em;
503
- line-height: 1.5em;
504
- padding-top: 0.8em;
505
- margin-bottom: 0.2em;
506
- font-weight: 400;
507
- }
508
- h4 {
509
- font-size: 1.15em;
510
- line-height: 1.4em;
511
- padding-top: 0.7em;
512
- margin-bottom: 0.1em;
513
- font-weight: 400;
514
- }
515
- p{
516
- font-size: 1em;
517
- line-height: 1.6em;
518
- padding-top: 0.2em;
519
- margin-bottom: 0.8em;
520
- }
521
- .ck-heading_h1_b, h2.ck-heading_h2_b, .ck-heading_h3_b{
522
- border-bottom: 1px solid #e9e9e9;
523
- }
524
- figcaption{
525
- background-color: var(--ck-color-image-caption-background);
526
- caption-side: bottom;
527
- color: var(--ck-color-image-caption-text);
528
- display: table-caption;
529
- font-size: .75em;
530
- outline-offset: -1px;
531
- padding: 0.6em;
532
- word-break: break-word;
533
- }
534
- blockquote {}
535
- .table {
536
- margin: 0;
537
- }
538
- ul.todo-list {
539
- list-style: none;
540
- margin:revert;
541
- color:revert;
542
- font-family:revert;
543
- margin-left: 32px;
544
- }
545
- ul, ol {
546
- list-style: initial;
547
- margin-left: 32px;
548
- }
549
- sub{
550
- vertical-align: sub
551
- }
552
- sup{
553
- vertical-align: super
554
- }
298
+ module.exports = defStyles;
299
+ ```
555
300
 
556
-
557
- }
301
+ ## <a id="requirements"></a>⚠️ Requirements
302
+ Strapi **v4**
558
303
 
559
- /*
560
- * CKEditor 5 (v34.0.0) content styles.
561
- * Generated on Wed, 27 Apr 2022 06:51:54 GMT.
562
- * For more information, check out https://ckeditor.com/docs/ckeditor5/latest/installation/advanced/content-styles.html
563
- */
304
+ Tested on **v4.18 - 4.19**
564
305
 
565
- :root {
566
- --ck-color-image-caption-background: hsl(0, 0%, 97%);
567
- --ck-color-image-caption-text: hsl(0, 0%, 20%);
568
- --ck-color-mention-background: hsla(341, 100%, 30%, 0.1);
569
- --ck-color-mention-text: hsl(341, 100%, 30%);
570
- --ck-color-table-caption-background: hsl(0, 0%, 97%);
571
- --ck-color-table-caption-text: hsl(0, 0%, 20%);
572
- --ck-highlight-marker-blue: hsl(201, 97%, 72%);
573
- --ck-highlight-marker-green: hsl(120, 93%, 68%);
574
- --ck-highlight-marker-pink: hsl(345, 96%, 73%);
575
- --ck-highlight-marker-yellow: hsl(60, 97%, 73%);
576
- --ck-highlight-pen-green: hsl(112, 100%, 27%);
577
- --ck-highlight-pen-red: hsl(0, 85%, 49%);
578
- --ck-image-style-spacing: 1.5em;
579
- --ck-inline-image-style-spacing: calc(var(--ck-image-style-spacing) / 2);
580
- --ck-todo-list-checkmark-size: 16px;
581
- }
306
+ ## <a id="thanks"></a>👍 This build includes some useful plugins based on these repos so thanks to them:
307
+ https://github.com/Roslovets-Inc/strapi-plugin-ckeditor5
582
308
 
583
- .ck.ck-sticky-panel .ck-sticky-panel__content_sticky{ top:64px }
309
+ https://github.com/leknoppix/ckeditor5-fullscreen
584
310
 
585
- /* ckeditor5-block-quote/theme/blockquote.css */
586
- .ck-content blockquote {
587
- overflow: hidden;
588
- padding-right: 1.5em;
589
- padding-left: 1.5em;
590
- margin-left: 0;
591
- margin-right: 0;
592
- font-style: italic;
593
- border-left: solid 5px hsl(0, 0%, 80%);
594
- }
595
- /* ckeditor5-block-quote/theme/blockquote.css */
596
- .ck-content[dir="rtl"] blockquote {
597
- border-left: 0;
598
- border-right: solid 5px hsl(0, 0%, 80%);
599
- }
600
- /* ckeditor5-basic-styles/theme/code.css */
601
- .ck-content code {
602
- background-color: hsla(0, 0%, 78%, 0.3);
603
- padding: .15em;
604
- border-radius: 2px;
605
- }
606
- /* ckeditor5-font/theme/fontsize.css */
607
- .ck-content .text-tiny {
608
- font-size: .7em;
609
- }
610
- /* ckeditor5-font/theme/fontsize.css */
611
- .ck-content .text-small {
612
- font-size: .85em;
613
- }
614
- /* ckeditor5-font/theme/fontsize.css */
615
- .ck-content .text-big {
616
- font-size: 1.4em;
617
- }
618
- /* ckeditor5-font/theme/fontsize.css */
619
- .ck-content .text-huge {
620
- font-size: 1.8em;
621
- }
622
- /* ckeditor5-highlight/theme/highlight.css */
623
- .ck-content .marker-yellow {
624
- background-color: var(--ck-highlight-marker-yellow);
625
- }
626
- /* ckeditor5-highlight/theme/highlight.css */
627
- .ck-content .marker-green {
628
- background-color: var(--ck-highlight-marker-green);
629
- }
630
- /* ckeditor5-highlight/theme/highlight.css */
631
- .ck-content .marker-pink {
632
- background-color: var(--ck-highlight-marker-pink);
633
- }
634
- /* ckeditor5-highlight/theme/highlight.css */
635
- .ck-content .marker-blue {
636
- background-color: var(--ck-highlight-marker-blue);
637
- }
638
- /* ckeditor5-highlight/theme/highlight.css */
639
- .ck-content .pen-red {
640
- color: var(--ck-highlight-pen-red);
641
- background-color: transparent;
642
- }
643
- /* ckeditor5-highlight/theme/highlight.css */
644
- .ck-content .pen-green {
645
- color: var(--ck-highlight-pen-green);
646
- background-color: transparent;
647
- }
648
- /* ckeditor5-image/theme/image.css */
649
- .ck-content .image {
650
- display: table;
651
- clear: both;
652
- text-align: center;
653
- margin: 0.9em auto;
654
- min-width: 50px;
655
- }
656
- /* ckeditor5-image/theme/image.css */
657
- .ck-content .image img {
658
- display: block;
659
- margin: 0 auto;
660
- max-width: 100%;
661
- min-width: 100%;
662
- }
663
- /* ckeditor5-image/theme/image.css */
664
- .ck-content .image-inline {
665
- /*
666
- * Normally, the .image-inline would have "display: inline-block" and "img { width: 100% }" (to follow the wrapper while resizing).;
667
- * Unfortunately, together with "srcset", it gets automatically stretched up to the width of the editing root.
668
- * This strange behavior does not happen with inline-flex.
669
- */
670
- display: inline-flex;
671
- max-width: 100%;
672
- align-items: flex-start;
673
- }
674
- /* ckeditor5-image/theme/image.css */
675
- .ck-content .image-inline picture {
676
- display: flex;
677
- }
678
- /* ckeditor5-image/theme/image.css */
679
- .ck-content .image-inline picture,
680
- .ck-content .image-inline img {
681
- flex-grow: 1;
682
- flex-shrink: 1;
683
- max-width: 100%;
684
- }
685
- /* ckeditor5-image/theme/imageresize.css */
686
- .ck-content .image.image_resized {
687
- max-width: 100%;
688
- display: block;
689
- box-sizing: border-box;
690
- }
691
- /* ckeditor5-image/theme/imageresize.css */
692
- .ck-content .image.image_resized img {
693
- width: 100%;
694
- }
695
- /* ckeditor5-image/theme/imageresize.css */
696
- .ck-content .image.image_resized > figcaption {
697
- display: block;
698
- }
699
- /* ckeditor5-image/theme/imagecaption.css */
700
- .ck-content .image > figcaption {
701
- display: table-caption;
702
- caption-side: bottom;
703
- word-break: break-word;
704
- color: var(--ck-color-image-caption-text);
705
- background-color: var(--ck-color-image-caption-background);
706
- padding: .6em;
707
- font-size: .75em;
708
- outline-offset: -1px;
709
- }
710
- /* ckeditor5-image/theme/imagestyle.css */
711
- .ck-content .image-style-block-align-left,
712
- .ck-content .image-style-block-align-right {
713
- max-width: calc(100% - var(--ck-image-style-spacing));
714
- }
715
- /* ckeditor5-image/theme/imagestyle.css */
716
- .ck-content .image-style-align-left,
717
- .ck-content .image-style-align-right {
718
- clear: none;
719
- }
720
- /* ckeditor5-image/theme/imagestyle.css */
721
- .ck-content .image-style-side {
722
- float: right;
723
- margin-left: var(--ck-image-style-spacing);
724
- max-width: 50%;
725
- }
726
- /* ckeditor5-image/theme/imagestyle.css */
727
- .ck-content .image-style-align-left {
728
- float: left;
729
- margin-right: var(--ck-image-style-spacing);
730
- }
731
- /* ckeditor5-image/theme/imagestyle.css */
732
- .ck-content .image-style-align-center {
733
- margin-left: auto;
734
- margin-right: auto;
735
- }
736
- /* ckeditor5-image/theme/imagestyle.css */
737
- .ck-content .image-style-align-right {
738
- float: right;
739
- margin-left: var(--ck-image-style-spacing);
740
- }
741
- /* ckeditor5-image/theme/imagestyle.css */
742
- .ck-content .image-style-block-align-right {
743
- margin-right: 0;
744
- margin-left: auto;
745
- }
746
- /* ckeditor5-image/theme/imagestyle.css */
747
- .ck-content .image-style-block-align-left {
748
- margin-left: 0;
749
- margin-right: auto;
750
- }
751
- /* ckeditor5-image/theme/imagestyle.css */
752
- .ck-content p + .image-style-align-left,
753
- .ck-content p + .image-style-align-right,
754
- .ck-content p + .image-style-side {
755
- margin-top: 0;
756
- }
757
- /* ckeditor5-image/theme/imagestyle.css */
758
- .ck-content .image-inline.image-style-align-left,
759
- .ck-content .image-inline.image-style-align-right {
760
- margin-top: var(--ck-inline-image-style-spacing);
761
- margin-bottom: var(--ck-inline-image-style-spacing);
762
- }
763
- /* ckeditor5-image/theme/imagestyle.css */
764
- .ck-content .image-inline.image-style-align-left {
765
- margin-right: var(--ck-inline-image-style-spacing);
766
- }
767
- /* ckeditor5-image/theme/imagestyle.css */
768
- .ck-content .image-inline.image-style-align-right {
769
- margin-left: var(--ck-inline-image-style-spacing);
770
- }
771
- /* ckeditor5-language/theme/language.css */
772
- .ck-content span[lang] {
773
- font-style: italic;
774
- }
775
- /* ckeditor5-media-embed/theme/mediaembed.css */
776
- .ck-content .media {
777
- clear: both;
778
- margin: 0.9em 0;
779
- display: block;
780
- min-width: 15em;
781
- }
782
- /* ckeditor5-list/theme/todolist.css */
783
- .ck-content .todo-list {
784
- list-style: none;
785
- }
786
- /* ckeditor5-list/theme/todolist.css */
787
- .ck-content .todo-list li {
788
- margin-bottom: 5px;
789
- }
790
- /* ckeditor5-list/theme/todolist.css */
791
- .ck-content .todo-list li .todo-list {
792
- margin-top: 5px;
793
- }
794
- /* ckeditor5-list/theme/todolist.css */
795
- .ck-content .todo-list .todo-list__label > input {
796
- -webkit-appearance: none;
797
- display: inline-block;
798
- position: relative;
799
- width: var(--ck-todo-list-checkmark-size);
800
- height: var(--ck-todo-list-checkmark-size);
801
- vertical-align: middle;
802
- border: 0;
803
- left: -25px;
804
- margin-right: -15px;
805
- right: 0;
806
- margin-left: 0;
807
- }
808
- /* ckeditor5-list/theme/todolist.css */
809
- .ck-content .todo-list .todo-list__label > input::before {
810
- display: block;
811
- position: absolute;
812
- box-sizing: border-box;
813
- content: '';
814
- width: 100%;
815
- height: 100%;
816
- border: 1px solid hsl(0, 0%, 20%);
817
- border-radius: 2px;
818
- transition: 250ms ease-in-out box-shadow, 250ms ease-in-out background, 250ms ease-in-out border;
819
- }
820
- /* ckeditor5-list/theme/todolist.css */
821
- .ck-content .todo-list .todo-list__label > input::after {
822
- display: block;
823
- position: absolute;
824
- box-sizing: content-box;
825
- pointer-events: none;
826
- content: '';
827
- left: calc( var(--ck-todo-list-checkmark-size) / 3 );
828
- top: calc( var(--ck-todo-list-checkmark-size) / 5.3 );
829
- width: calc( var(--ck-todo-list-checkmark-size) / 5.3 );
830
- height: calc( var(--ck-todo-list-checkmark-size) / 2.6 );
831
- border-style: solid;
832
- border-color: transparent;
833
- border-width: 0 calc( var(--ck-todo-list-checkmark-size) / 8 ) calc( var(--ck-todo-list-checkmark-size) / 8 ) 0;
834
- transform: rotate(45deg);
835
- }
836
- /* ckeditor5-list/theme/todolist.css */
837
- .ck-content .todo-list .todo-list__label > input[checked]::before {
838
- background: hsl(126, 64%, 41%);
839
- border-color: hsl(126, 64%, 41%);
840
- }
841
- /* ckeditor5-list/theme/todolist.css */
842
- .ck-content .todo-list .todo-list__label > input[checked]::after {
843
- border-color: hsl(0, 0%, 100%);
844
- }
845
- /* ckeditor5-list/theme/todolist.css */
846
- .ck-content .todo-list .todo-list__label .todo-list__label__description {
847
- vertical-align: middle;
848
- }
849
- /* ckeditor5-page-break/theme/pagebreak.css */
850
- .ck-content .page-break {
851
- position: relative;
852
- clear: both;
853
- padding: 5px 0;
854
- display: flex;
855
- align-items: center;
856
- justify-content: center;
857
- }
858
- /* ckeditor5-page-break/theme/pagebreak.css */
859
- .ck-content .page-break::after {
860
- content: '';
861
- position: absolute;
862
- border-bottom: 2px dashed hsl(0, 0%, 77%);
863
- width: 100%;
864
- }
865
- /* ckeditor5-page-break/theme/pagebreak.css */
866
- .ck-content .page-break__label {
867
- position: relative;
868
- z-index: 1;
869
- padding: .3em .6em;
870
- display: block;
871
- text-transform: uppercase;
872
- border: 1px solid hsl(0, 0%, 77%);
873
- border-radius: 2px;
874
- font-family: Helvetica, Arial, Tahoma, Verdana, Sans-Serif;
875
- font-size: 0.75em;
876
- font-weight: bold;
877
- color: hsl(0, 0%, 20%);
878
- background: hsl(0, 0%, 100%);
879
- box-shadow: 2px 2px 1px hsla(0, 0%, 0%, 0.15);
880
- -webkit-user-select: none;
881
- -moz-user-select: none;
882
- -ms-user-select: none;
883
- user-select: none;
884
- }
885
- /* ckeditor5-table/theme/tablecaption.css */
886
- .ck-content .table > figcaption {
887
- display: table-caption;
888
- caption-side: top;
889
- word-break: break-word;
890
- text-align: center;
891
- color: var(--ck-color-table-caption-text);
892
- background-color: var(--ck-color-table-caption-background);
893
- padding: .6em;
894
- font-size: .75em;
895
- outline-offset: -1px;
896
- }
897
- /* ckeditor5-table/theme/table.css */
898
- .ck-content .table {
899
- margin: 0.9em auto;
900
- display: table;
901
- }
902
- /* ckeditor5-table/theme/table.css */
903
- .ck-content .table table {
904
- border-collapse: collapse;
905
- border-spacing: 0;
906
- width: 100%;
907
- height: 100%;
908
- border: 1px double hsl(0, 0%, 70%);
909
- }
910
- /* ckeditor5-table/theme/table.css */
911
- .ck-content .table table td,
912
- .ck-content .table table th {
913
- min-width: 2em;
914
- padding: .4em;
915
- border: 1px solid hsl(0, 0%, 75%);
916
- }
917
- /* ckeditor5-table/theme/table.css */
918
- .ck-content .table table th {
919
- font-weight: bold;
920
- background: hsla(0, 0%, 0%, 5%);
921
- }
922
- /* ckeditor5-table/theme/table.css */
923
- .ck-content[dir="rtl"] .table th {
924
- text-align: right;
925
- }
926
- /* ckeditor5-table/theme/table.css */
927
- .ck-content[dir="ltr"] .table th {
928
- text-align: left;
929
- }
930
- /* ckeditor5-code-block/theme/codeblock.css */
931
- .ck-content pre {
932
- padding: 1em;
933
- color: hsl(0, 0%, 20.8%);
934
- background: hsla(0, 0%, 78%, 0.3);
935
- border: 1px solid hsl(0, 0%, 77%);
936
- border-radius: 2px;
937
- text-align: left;
938
- direction: ltr;
939
- tab-size: 4;
940
- white-space: pre-wrap;
941
- font-style: normal;
942
- min-width: 200px;
943
- }
944
- /* ckeditor5-code-block/theme/codeblock.css */
945
- .ck-content pre code {
946
- background: unset;
947
- padding: 0;
948
- border-radius: 0;
949
- }
950
- /* ckeditor5-horizontal-line/theme/horizontalline.css */
951
- .ck-content hr {
952
- margin: 15px 0;
953
- height: 4px;
954
- background: hsl(0, 0%, 87%);
955
- border: 0;
956
- }
957
- /* ckeditor5-mention/theme/mention.css */
958
- .ck-content .mention {
959
- background: var(--ck-color-mention-background);
960
- color: var(--ck-color-mention-text);
961
- }
962
- @media print {
963
- /* ckeditor5-page-break/theme/pagebreak.css */
964
- .ck-content .page-break {
965
- padding: 0;
966
- }
967
- /* ckeditor5-page-break/theme/pagebreak.css */
968
- .ck-content .page-break::after {
969
- display: none;
970
- }
971
- }
972
- ```
973
-
974
- </details>
975
-
976
- <br/>
311
+ https://github.com/gtomato/ckeditor5-strapi-upload-plugin
977
312
 
978
- ## Requirements
979
- Strapi v4
980
-
981
- Tested on v4.18
313
+ https://github.com/pshurygin/ckeditor5-font-color
@@ -0,0 +1,333 @@
1
+ :root {
2
+ /* Overrides the border radius setting in the theme. */
3
+ --ck-border-radius: 4px;
4
+
5
+ /* Helper variables to avoid duplication in the colors. */
6
+ --ck-custom-background: hsl(270, 56%, 37%);
7
+ --ck-custom-foreground: hsl(255, 3%, 18%);
8
+ --ck-custom-border: hsl(300, 1%, 22%);
9
+ --ck-custom-white: hsl(0, 0%, 100%);
10
+
11
+ /* -- Overrides generic colors. ------------------------------------------------------------- */
12
+
13
+ --ck-color-base-foreground: var(--ck-custom-background);
14
+ --ck-color-focus-border: hsl(208, 90%, 62%);
15
+ --ck-color-text: hsl(0, 0%, 98%);
16
+ --ck-color-shadow-drop: hsla(0, 0%, 0%, 0.2);
17
+ --ck-color-shadow-inner: hsla(0, 0%, 0%, 0.1);
18
+
19
+ /* -- Overrides the default .ck-button class colors. ---------------------------------------- */
20
+
21
+ --ck-color-button-default-background: var(--ck-custom-background);
22
+ --ck-color-button-default-hover-background: hsl(270, 1%, 22%);
23
+ --ck-color-button-default-active-background: hsl(270, 2%, 20%);
24
+ --ck-color-button-default-active-shadow: hsl(270, 2%, 23%);
25
+ --ck-color-button-default-disabled-background: var(--ck-custom-background);
26
+
27
+ --ck-color-button-on-background: var(--ck-custom-foreground);
28
+ --ck-color-button-on-hover-background: hsl(255, 4%, 16%);
29
+ --ck-color-button-on-active-background: hsl(255, 4%, 14%);
30
+ --ck-color-button-on-active-shadow: hsl(240, 3%, 19%);
31
+ --ck-color-button-on-disabled-background: var(--ck-custom-foreground);
32
+
33
+ --ck-color-button-action-background: hsl(168, 76%, 42%);
34
+ --ck-color-button-action-hover-background: hsl(168, 76%, 38%);
35
+ --ck-color-button-action-active-background: hsl(168, 76%, 36%);
36
+ --ck-color-button-action-active-shadow: hsl(168, 75%, 34%);
37
+ --ck-color-button-action-disabled-background: hsl(168, 76%, 42%);
38
+ --ck-color-button-action-text: var(--ck-custom-white);
39
+
40
+ --ck-color-button-save: hsl(120, 100%, 46%);
41
+ --ck-color-button-cancel: hsl(15, 100%, 56%);
42
+
43
+ /* -- Overrides the default .ck-dropdown class colors. -------------------------------------- */
44
+
45
+ --ck-color-dropdown-panel-background: var(--ck-custom-background);
46
+ --ck-color-dropdown-panel-border: var(--ck-custom-foreground);
47
+
48
+ /* -- Overrides the default .ck-splitbutton class colors. ----------------------------------- */
49
+
50
+ --ck-color-split-button-hover-background: var(--ck-color-button-default-hover-background);
51
+ --ck-color-split-button-hover-border: var(--ck-custom-foreground);
52
+
53
+ /* -- Overrides the default .ck-input class colors. ----------------------------------------- */
54
+
55
+ --ck-color-input-background: var(--ck-custom-background);
56
+ --ck-color-input-border: hsl(257, 3%, 43%);
57
+ --ck-color-input-text: hsl(0, 0%, 98%);
58
+ --ck-color-input-disabled-background: hsl(255, 4%, 21%);
59
+ --ck-color-input-disabled-border: hsl(250, 3%, 38%);
60
+ --ck-color-input-disabled-text: hsl(0, 0%, 78%);
61
+
62
+ /* -- Overrides the default .ck-labeled-field-view class colors. ---------------------------- */
63
+
64
+ --ck-color-labeled-field-label-background: var(--ck-custom-background);
65
+
66
+ /* -- Overrides the default .ck-list class colors. ------------------------------------------ */
67
+
68
+ --ck-color-list-background: var(--ck-custom-background);
69
+ --ck-color-list-button-hover-background: var(--ck-color-base-foreground);
70
+ --ck-color-list-button-on-background: var(--ck-color-base-active);
71
+ --ck-color-list-button-on-background-focus: var(--ck-color-base-active-focus);
72
+ --ck-color-list-button-on-text: var(--ck-color-base-background);
73
+
74
+ /* -- Overrides the default .ck-balloon-panel class colors. --------------------------------- */
75
+
76
+ --ck-color-panel-background: var(--ck-custom-background);
77
+ --ck-color-panel-border: var(--ck-custom-border);
78
+
79
+ /* -- Overrides the default .ck-toolbar class colors. --------------------------------------- */
80
+
81
+ --ck-color-toolbar-background: var(--ck-custom-background);
82
+ --ck-color-toolbar-border: var(--ck-custom-border);
83
+
84
+ /* -- Overrides the default .ck-tooltip class colors. --------------------------------------- */
85
+
86
+ --ck-color-tooltip-background: hsl(252, 7%, 14%);
87
+ --ck-color-tooltip-text: hsl(0, 0%, 93%);
88
+
89
+ /* -- Overrides the default colors used by the ckeditor5-image package. --------------------- */
90
+
91
+ --ck-color-image-caption-background: hsl(0, 0%, 97%);
92
+ --ck-color-image-caption-text: hsl(0, 0%, 20%);
93
+
94
+ /* -- Overrides the default colors used by the ckeditor5-widget package. -------------------- */
95
+
96
+ --ck-color-widget-blurred-border: hsl(0, 0%, 87%);
97
+ --ck-color-widget-hover-border: hsl(43, 100%, 68%);
98
+ --ck-color-widget-editable-focus-background: var(--ck-custom-white);
99
+
100
+ /* -- Overrides the default colors used by the ckeditor5-link package. ---------------------- */
101
+
102
+ --ck-color-link-default: hsl(190, 100%, 75%);
103
+ }
104
+
105
+ html[data-theme='light'] {
106
+ --ck-color-editor-base-text:#1A1A1A;
107
+ /* Overrides the border radius setting in the theme. */
108
+ --ck-border-radius: 4px;
109
+
110
+ /* Helper variables to avoid duplication in the colors. */
111
+ --ck-color-base-border: #EAEAEF;
112
+ --ck-color-base-background:#ffffff;
113
+ --ck-custom-background: #ffffff;
114
+ --ck-custom-foreground: #dedede;
115
+ --ck-custom-border: #EAEAEF;
116
+ --ck-custom-white: hsl(0, 0%, 100%);
117
+
118
+ --ck-color-focus-outer-shadow:#F0F0FF;
119
+
120
+ --ck-color-base-focus: #bbbaf1;
121
+ --ck-color-base-active: #F0F0FF;
122
+ --ck-color-base-active-focus: #e2e2fd;
123
+ /* -- Overrides generic colors. ------------------------------------------------------------- */
124
+
125
+ --ck-color-base-foreground: var(--ck-custom-background);
126
+ --ck-color-focus-border: #4945FF;
127
+ --ck-color-text: #32324D;
128
+ /* --ck-color-text: hsl(240, 18%, 33%); */
129
+ --ck-color-shadow-drop: hsla(250, 31%, 80%, 0.1);
130
+ --ck-color-shadow-inner: hsla(250, 31%, 80%, 0.1);
131
+
132
+ /* -- Overrides the default .ck-button class colors. ---------------------------------------- */
133
+
134
+ --ck-color-button-default-background: var(--ck-custom-background);
135
+ --ck-color-button-default-hover-background: #F0F0FF;
136
+ --ck-color-button-default-active-background: #dedefb;
137
+ --ck-color-button-default-active-shadow: #dedefb;
138
+ --ck-color-button-default-disabled-background: var(--ck-custom-background);
139
+
140
+ --ck-color-button-on-background: #F0F0FF;
141
+ --ck-color-button-on-hover-background: #dbdbff;
142
+ --ck-color-button-on-active-background: #cdcdf8;
143
+ --ck-color-button-on-active-shadow: #cdcdf8;
144
+ --ck-color-button-on-disabled-background: var(--ck-custom-foreground);
145
+
146
+ --ck-color-button-action-background: hsl(168, 76%, 42%);
147
+ --ck-color-button-action-hover-background: hsl(168, 76%, 38%);
148
+ --ck-color-button-action-active-background: hsl(168, 76%, 36%);
149
+ --ck-color-button-action-active-shadow: hsl(168, 75%, 34%);
150
+ --ck-color-button-action-disabled-background: hsl(168, 76%, 42%);
151
+ --ck-color-button-action-text: var(--ck-custom-white);
152
+
153
+ --ck-color-button-save: hsl(120, 100%, 46%);
154
+ --ck-color-button-cancel: hsl(15, 100%, 56%);
155
+
156
+ /* -- Overrides the default .ck-dropdown class colors. -------------------------------------- */
157
+
158
+ --ck-color-dropdown-panel-background: var(--ck-custom-background);
159
+ --ck-color-dropdown-panel-border: var(--ck-custom-foreground);
160
+
161
+ /* -- Overrides the default .ck-splitbutton class colors. ----------------------------------- */
162
+
163
+ --ck-color-split-button-hover-background: var(--ck-color-button-default-hover-background);
164
+ --ck-color-split-button-hover-border: var(--ck-custom-foreground);
165
+
166
+ /* -- Overrides the default .ck-input class colors. ----------------------------------------- */
167
+
168
+ --ck-color-input-background: var(--ck-custom-background);
169
+ --ck-color-input-border: hsl(257, 3%, 43%);
170
+ --ck-color-input-text: hsl(0, 0%, 98%);
171
+ --ck-color-input-disabled-background: hsl(0, 0%, 97%);
172
+ --ck-color-input-disabled-border: rgb(214, 214, 214);
173
+ --ck-color-input-disabled-text: hsl(0, 0%, 78%);
174
+
175
+ /* -- Overrides the default .ck-labeled-field-view class colors. ---------------------------- */
176
+
177
+ --ck-color-labeled-field-label-background: var(--ck-custom-background);
178
+
179
+ /* -- Overrides the default .ck-list class colors. ------------------------------------------ */
180
+
181
+ --ck-color-list-background: var(--ck-custom-background);
182
+ --ck-color-list-button-hover-background: #f4f4fb;
183
+ --ck-color-list-button-on-background: var(--ck-color-base-active);
184
+ --ck-color-list-button-on-background-focus: var(--ck-color-base-active-focus);
185
+ --ck-color-list-button-on-text: #271FE2;
186
+
187
+ /* -- Overrides the default .ck-balloon-panel class colors. --------------------------------- */
188
+
189
+ --ck-color-panel-background: var(--ck-custom-background);
190
+ --ck-color-panel-border: var(--ck-custom-border);
191
+
192
+ /* -- Overrides the default .ck-toolbar class colors. --------------------------------------- */
193
+
194
+ --ck-color-toolbar-background: var(--ck-custom-background);
195
+ --ck-color-toolbar-border: var(--ck-custom-border);
196
+
197
+ /* -- Overrides the default .ck-tooltip class colors. --------------------------------------- */
198
+
199
+ --ck-color-tooltip-background: #3a3955;
200
+ --ck-color-tooltip-text: hsl(0, 0%, 93%);
201
+
202
+ /* -- Overrides the default colors used by the ckeditor5-image package. --------------------- */
203
+
204
+ --ck-color-image-caption-background: hsl(0, 0%, 97%);
205
+ --ck-color-image-caption-text: hsl(0, 0%, 20%);
206
+
207
+ /* -- Overrides the default colors used by the ckeditor5-widget package. -------------------- */
208
+
209
+ --ck-color-widget-blurred-border: #cfcffa;
210
+ --ck-color-widget-hover-border: #c9c9e4;
211
+ --ck-color-widget-editable-focus-background: var(--ck-custom-white);
212
+
213
+ /* -- Overrides the default colors used by the ckeditor5-link package. ---------------------- */
214
+
215
+ --ck-color-link-default: hsl(209, 89%, 33%);
216
+
217
+ }
218
+
219
+ html[data-theme='dark'] {
220
+ --ck-color-editor-base-text:rgb(236, 236, 236);
221
+ /* Overrides the border radius setting in the theme. */
222
+ --ck-border-radius: 4px;
223
+
224
+ /* Overrides the default font size in the theme. */
225
+ /* --ck-font-size-base: 14px; */
226
+ /* Helper variables to avoid duplication in the colors. */
227
+ --ck-color-base-border: #4A4A6A;
228
+ /* --ck-color-base-background:#212134; */
229
+ /* --ck-color-base-background:#292943; */
230
+ --ck-color-base-background:#27273e;
231
+ --ck-custom-background: #212134;
232
+ --ck-custom-foreground: #26263b;
233
+ --ck-custom-border: #4A4A6A;
234
+ --ck-custom-white: hsl(0, 0%, 100%);
235
+
236
+ --ck-color-focus-outer-shadow:#bbbaf1;
237
+
238
+ --ck-color-base-focus: #bbbaf1;
239
+ --ck-color-base-active: #8280fc;
240
+ --ck-color-base-active-focus: #7B79FF;
241
+ /* -- Overrides generic colors. ------------------------------------------------------------- */
242
+
243
+ --ck-color-base-foreground: var(--ck-custom-background);
244
+ --ck-color-focus-border: #6765bd;
245
+ --ck-color-text: hsl(0, 0%, 93%);
246
+ --ck-color-shadow-drop: hsla(0, 0%, 0%, 0.2);
247
+ --ck-color-shadow-inner: hsla(0, 0%, 0%, 0.1);
248
+
249
+ /* -- Overrides the default .ck-button class colors. ---------------------------------------- */
250
+
251
+ --ck-color-button-default-background: var(--ck-custom-background);
252
+ --ck-color-button-default-hover-background: #7B79FF;
253
+ --ck-color-button-default-active-background: #7B79FF;
254
+ --ck-color-button-default-active-shadow: #7B79FF;
255
+ --ck-color-button-default-disabled-background: var(--ck-custom-background);
256
+
257
+ --ck-color-button-on-background: #7776da;
258
+ --ck-color-button-on-hover-background: #7B79FF;
259
+ --ck-color-button-on-active-background: #8280fc;
260
+ --ck-color-button-on-active-shadow: #807ed3;
261
+ --ck-color-button-on-disabled-background: var(--ck-custom-foreground);
262
+
263
+ --ck-color-button-action-background: hsl(168, 76%, 42%);
264
+ --ck-color-button-action-hover-background: hsl(168, 76%, 38%);
265
+ --ck-color-button-action-active-background: hsl(168, 76%, 36%);
266
+ --ck-color-button-action-active-shadow: hsl(168, 75%, 34%);
267
+ --ck-color-button-action-disabled-background: hsl(168, 76%, 42%);
268
+ --ck-color-button-action-text: var(--ck-custom-white);
269
+
270
+ --ck-color-button-save: hsl(120, 100%, 46%);
271
+ --ck-color-button-cancel: hsl(15, 100%, 56%);
272
+
273
+ /* -- Overrides the default .ck-dropdown class colors. -------------------------------------- */
274
+
275
+ --ck-color-dropdown-panel-background: var(--ck-custom-background);
276
+ --ck-color-dropdown-panel-border: var(--ck-custom-foreground);
277
+
278
+ /* -- Overrides the default .ck-splitbutton class colors. ----------------------------------- */
279
+
280
+ --ck-color-split-button-hover-background: var(--ck-color-button-default-hover-background);
281
+ --ck-color-split-button-hover-border: var(--ck-custom-foreground);
282
+
283
+ /* -- Overrides the default .ck-input class colors. ----------------------------------------- */
284
+
285
+ --ck-color-input-background: var(--ck-custom-background);
286
+ --ck-color-input-border: hsl(257, 3%, 43%);
287
+ --ck-color-input-text: hsl(0, 0%, 98%);
288
+ --ck-color-input-disabled-background: hsl(255, 4%, 21%);
289
+ --ck-color-input-disabled-border: hsl(250, 3%, 38%);
290
+ --ck-color-input-disabled-text: hsl(0, 0%, 78%);
291
+
292
+ /* -- Overrides the default .ck-labeled-field-view class colors. ---------------------------- */
293
+
294
+ --ck-color-labeled-field-label-background: var(--ck-custom-background);
295
+
296
+ /* -- Overrides the default .ck-list class colors. ------------------------------------------ */
297
+
298
+ --ck-color-list-background: var(--ck-custom-background);
299
+ --ck-color-list-button-hover-background: #3d3d56;
300
+ --ck-color-list-button-on-background: var(--ck-color-base-active);
301
+ --ck-color-list-button-on-background-focus: var(--ck-color-base-active-focus);
302
+ --ck-color-list-button-on-text: #ffffff;
303
+
304
+ /* -- Overrides the default .ck-balloon-panel class colors. --------------------------------- */
305
+
306
+ --ck-color-panel-background: var(--ck-custom-background);
307
+ --ck-color-panel-border: var(--ck-custom-border);
308
+
309
+ /* -- Overrides the default .ck-toolbar class colors. --------------------------------------- */
310
+
311
+ --ck-color-toolbar-background: var(--ck-custom-background);
312
+ --ck-color-toolbar-border: var(--ck-custom-border);
313
+
314
+ /* -- Overrides the default .ck-tooltip class colors. --------------------------------------- */
315
+
316
+ --ck-color-tooltip-background: #3a3955;
317
+ --ck-color-tooltip-text: hsl(0, 0%, 93%);
318
+
319
+ /* -- Overrides the default colors used by the ckeditor5-image package. --------------------- */
320
+
321
+ --ck-color-image-caption-background: hsl(0, 0%, 97%);
322
+ --ck-color-image-caption-text: hsl(0, 0%, 20%);
323
+
324
+ /* -- Overrides the default colors used by the ckeditor5-widget package. -------------------- */
325
+
326
+ --ck-color-widget-blurred-border: #7c7c96;
327
+ --ck-color-widget-hover-border: #666687;
328
+ --ck-color-widget-editable-focus-background: var(--ck-custom-white);
329
+
330
+ /* -- Overrides the default colors used by the ckeditor5-link package. ---------------------- */
331
+
332
+ --ck-color-link-default: hsl(216, 100%, 75%);
333
+ }
@@ -7,7 +7,6 @@ const name = pluginPkg.strapi.name;
7
7
  export default {
8
8
  register(app) {
9
9
  app.addFields({ type: "wysiwyg", Component: Wysiwyg });
10
- console.log(pluginId);
11
10
  app.registerPlugin({
12
11
  id: pluginId,
13
12
  isReady: true,
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@_sh/strapi-plugin-ckeditor",
3
- "version": "1.0.1",
3
+ "version": "1.0.4",
4
4
  "description": "Replaces the default Strapi WYSIWYG editor with a customized buil of CKEditor 5 packed with useful plugins.",
5
5
  "private": false,
6
6
  "keywords": [
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file