@ckeditor/ckeditor5-theme-lark 45.0.0-alpha.0 → 45.0.0-alpha.2
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/dist/index-editor.css
CHANGED
@@ -2087,6 +2087,9 @@ a.ck.ck-button-bold{
|
|
2087
2087
|
.ck.ck-bookmark-form{
|
2088
2088
|
width:var(--ck-bookmark-form-width);
|
2089
2089
|
}
|
2090
|
+
.ck.ck-bookmark-balloon .ck.ck-toolbar > .ck-toolbar__items{
|
2091
|
+
flex-wrap:nowrap;
|
2092
|
+
}
|
2090
2093
|
.ck.ck-bookmark-toolbar__preview{
|
2091
2094
|
padding:0 var(--ck-spacing-medium);
|
2092
2095
|
max-width:var(--ck-input-width);
|
@@ -2690,6 +2693,9 @@ a.ck.ck-button-bold{
|
|
2690
2693
|
:root{
|
2691
2694
|
--ck-link-bookmark-icon-size:calc( var(--ck-icon-size) * 0.7);
|
2692
2695
|
}
|
2696
|
+
.ck.ck-toolbar.ck-link-toolbar > .ck-toolbar__items{
|
2697
|
+
flex-wrap:nowrap;
|
2698
|
+
}
|
2693
2699
|
a.ck.ck-button.ck-link-toolbar__preview{
|
2694
2700
|
padding:0 var(--ck-spacing-medium);
|
2695
2701
|
color:var(--ck-color-link-default);
|
@@ -3454,8 +3460,10 @@ a.ck.ck-button.ck-link-toolbar__preview:has( .ck-icon){
|
|
3454
3460
|
}
|
3455
3461
|
.ck-editor__editable .table.layout-table > table{
|
3456
3462
|
width:100%;
|
3463
|
+
height:100%;
|
3457
3464
|
overflow:clip;
|
3458
3465
|
overflow-clip-margin:var(--ck-widget-outline-thickness);
|
3466
|
+
border-collapse:revert;
|
3459
3467
|
}
|
3460
3468
|
.ck-editor__editable .table.layout-table > table:not(
|
3461
3469
|
[style*="border:"],
|
package/dist/index.css
CHANGED
@@ -3216,6 +3216,9 @@ of the component, floating–point numbers have been used which, for the default
|
|
3216
3216
|
/**
|
3217
3217
|
* Makes element unselectable.
|
3218
3218
|
*/
|
3219
|
+
.ck.ck-bookmark-balloon .ck.ck-toolbar > .ck-toolbar__items {
|
3220
|
+
flex-wrap: nowrap;
|
3221
|
+
}
|
3219
3222
|
.ck.ck-bookmark-toolbar__preview {
|
3220
3223
|
padding: 0 var(--ck-spacing-medium);
|
3221
3224
|
max-width: var(--ck-input-width);
|
@@ -4012,6 +4015,9 @@ of the component, floating–point numbers have been used which, for the default
|
|
4012
4015
|
:root {
|
4013
4016
|
--ck-link-bookmark-icon-size: calc( var(--ck-icon-size) * 0.7); /* 0.7 = 14/20 cause default the icon size is 20px */
|
4014
4017
|
}
|
4018
|
+
.ck.ck-toolbar.ck-link-toolbar > .ck-toolbar__items {
|
4019
|
+
flex-wrap: nowrap;
|
4020
|
+
}
|
4015
4021
|
a.ck.ck-button.ck-link-toolbar__preview {
|
4016
4022
|
padding: 0 var(--ck-spacing-medium);
|
4017
4023
|
color: var(--ck-color-link-default);
|
@@ -5026,11 +5032,16 @@ a.ck.ck-button.ck-link-toolbar__preview:has( .ck-icon ) {
|
|
5026
5032
|
}
|
5027
5033
|
.ck-editor__editable .table.layout-table > table {
|
5028
5034
|
width: 100%;
|
5035
|
+
height: 100%;
|
5036
|
+
|
5029
5037
|
/* Styles to make the layout table outline visible when the layout table is inside another layout table inside edge cells.
|
5030
5038
|
Currently, this solution works on every browser except Safari. */
|
5031
5039
|
overflow: clip;
|
5032
5040
|
overflow-clip-margin: var(--ck-widget-outline-thickness);
|
5033
5041
|
|
5042
|
+
/* Resetting `border-collapse` property to the user agent styles. */
|
5043
|
+
border-collapse: revert;
|
5044
|
+
|
5034
5045
|
/* The default table layout style in the editing view when the border is unset. */
|
5035
5046
|
}
|
5036
5047
|
.ck-editor__editable .table.layout-table > table:not(
|