@_sh/strapi-plugin-ckeditor 1.0.5 → 1.0.6
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.
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
const styles = `
|
|
2
2
|
|
|
3
3
|
.ck-editor__main {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
--ck-font-face:"Source Sans Pro",system-ui,Roboto,"Helvetica Neue","Helvetica",Arial,sans-serif;
|
|
5
|
+
min-height: ${200 / 16}em;
|
|
6
|
+
color:var(--ck-color-editor-base-text);
|
|
7
|
+
font-family:var(--ck-font-face);
|
|
8
8
|
> div {
|
|
9
|
-
|
|
9
|
+
min-height: ${200 / 16}em;
|
|
10
10
|
}
|
|
11
11
|
.ck-editor__editable {
|
|
12
|
-
|
|
12
|
+
line-height: initial;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
div, applet, object, iframe,
|
|
@@ -25,44 +25,44 @@ const styles = `
|
|
|
25
25
|
details, embed, figure, figcaption,
|
|
26
26
|
footer, header, hgroup, menu, nav, output,
|
|
27
27
|
ruby, section, summary, time, mark, audio, video {
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
font: revert;
|
|
29
|
+
margin:revert;
|
|
30
|
+
font-family:revert;
|
|
31
31
|
}
|
|
32
32
|
h1, .ck-heading_h1_b {
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
33
|
+
font-size: 2.36em;
|
|
34
|
+
line-height: 1.33em;
|
|
35
|
+
padding-top: 1em;
|
|
36
|
+
margin-bottom: 1.67em;
|
|
37
|
+
font-weight: 400;
|
|
38
38
|
}
|
|
39
39
|
h2, .ck-heading_h2_b {
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
40
|
+
font-size: 1.68em;
|
|
41
|
+
line-height: 1.68em;
|
|
42
|
+
padding-top: 0.8em;
|
|
43
|
+
margin-bottom: 0.4em;
|
|
44
|
+
padding-bottom: 0.2em;
|
|
45
|
+
font-weight: 400;
|
|
46
46
|
}
|
|
47
47
|
h3, .ck-heading_h3_b{
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
48
|
+
font-size: 1.36em;
|
|
49
|
+
line-height: 1.5em;
|
|
50
|
+
padding-top: 0.8em;
|
|
51
|
+
margin-bottom: 0.2em;
|
|
52
|
+
font-weight: 400;
|
|
53
53
|
}
|
|
54
54
|
h4 {
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
55
|
+
font-size: 1.15em;
|
|
56
|
+
line-height: 1.4em;
|
|
57
|
+
padding-top: 0.7em;
|
|
58
|
+
margin-bottom: 0.1em;
|
|
59
|
+
font-weight: 400;
|
|
60
60
|
}
|
|
61
61
|
p{
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
62
|
+
font-size: 1em;
|
|
63
|
+
line-height: 1.6em;
|
|
64
|
+
padding-top: 0.2em;
|
|
65
|
+
margin-bottom: 0.8em;
|
|
66
66
|
}
|
|
67
67
|
.ck-heading_h1_b, h2.ck-heading_h2_b, .ck-heading_h3_b{
|
|
68
68
|
border-bottom: 1px solid #e9e9e9;
|
|
@@ -98,8 +98,6 @@ const styles = `
|
|
|
98
98
|
sup{
|
|
99
99
|
vertical-align: super
|
|
100
100
|
}
|
|
101
|
-
|
|
102
|
-
|
|
103
101
|
}
|
|
104
102
|
|
|
105
103
|
/*
|
|
@@ -515,6 +513,6 @@ const styles = `
|
|
|
515
513
|
display: none;
|
|
516
514
|
}
|
|
517
515
|
}
|
|
518
|
-
|
|
516
|
+
`;
|
|
519
517
|
|
|
520
518
|
export default styles
|
package/package.json
CHANGED