@ckeditor/ckeditor5-theme-lark 47.2.0-alpha.7 → 47.3.0-alpha.0
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/LICENSE.md +3 -3
- package/dist/index-editor.css +118 -0
- package/dist/index.css +148 -0
- package/dist/index.css.map +1 -1
- package/package.json +2 -2
- package/theme/ckeditor5-table/formrow-experimental.css +24 -0
- package/theme/ckeditor5-table/tableform-experimental.css +104 -0
- package/theme/ckeditor5-table/tableproperties-experimental.css +45 -0
- package/theme/index.css +3 -0
package/LICENSE.md
CHANGED
|
@@ -11,10 +11,10 @@ Licensed under a dual-license model, this software is available under:
|
|
|
11
11
|
|
|
12
12
|
For more information, see: [https://ckeditor.com/legal/ckeditor-licensing-options](https://ckeditor.com/legal/ckeditor-licensing-options).
|
|
13
13
|
|
|
14
|
-
Sources of Intellectual Property Included in CKEditor
|
|
15
|
-
|
|
14
|
+
Sources of Intellectual Property Included in CKEditor 5
|
|
15
|
+
------------------------------------------------------------
|
|
16
16
|
|
|
17
|
-
Where not otherwise indicated, all CKEditor content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, CKEditor will incorporate work done by developers outside of CKSource with their express permission.
|
|
17
|
+
Where not otherwise indicated, all CKEditor 5 content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, CKEditor 5 will incorporate work done by developers outside of CKSource with their express permission.
|
|
18
18
|
|
|
19
19
|
Trademarks
|
|
20
20
|
----------
|
package/dist/index-editor.css
CHANGED
|
@@ -3570,6 +3570,124 @@ a.ck.ck-button.ck-link-toolbar__preview:has( .ck-icon){
|
|
|
3570
3570
|
.ck-editor__editable .table.layout-table.ck-widget.ck-widget_type-around_show-fake-caret_after > .ck-widget__type-around > .ck-widget__type-around__fake-caret{
|
|
3571
3571
|
bottom:0;
|
|
3572
3572
|
}
|
|
3573
|
+
.ck.ck-table-properties-form{
|
|
3574
|
+
width:320px;
|
|
3575
|
+
}
|
|
3576
|
+
.ck.ck-table-properties-form .ck-form__row.ck-table-properties-form__alignment-row{
|
|
3577
|
+
align-self:flex-end;
|
|
3578
|
+
}
|
|
3579
|
+
.ck.ck-table-properties-form .ck-form__row.ck-table-properties-form__alignment-row .ck.ck-toolbar{
|
|
3580
|
+
background:none;
|
|
3581
|
+
margin-top:var(--ck-spacing-standard);
|
|
3582
|
+
}
|
|
3583
|
+
.ck.ck-table-properties-form .ck-form__row.ck-table-properties-form__alignment-row .ck.ck-toolbar .ck-toolbar__items > *{
|
|
3584
|
+
flex:1;
|
|
3585
|
+
}
|
|
3586
|
+
.ck.ck-table-properties-form.ck-table-properties-form_experimental .ck-form__row.ck-table-properties-form__alignment-row{
|
|
3587
|
+
padding:var(--ck-spacing-standard) var(--ck-spacing-large) 0;
|
|
3588
|
+
}
|
|
3589
|
+
.ck.ck-table-properties-form.ck-table-properties-form_experimental .ck-form__row.ck-table-form__action-row{
|
|
3590
|
+
justify-content:flex-end;
|
|
3591
|
+
}
|
|
3592
|
+
.ck.ck-table-properties-form.ck-table-properties-form_experimental .ck-form__row.ck-table-form__action-row > .ck.ck-button{
|
|
3593
|
+
flex-grow:initial;
|
|
3594
|
+
}
|
|
3595
|
+
.ck.ck-table-properties-form.ck-table-properties-form_experimental .ck-form__row.ck-table-form__action-row > .ck.ck-button .ck-button__label{
|
|
3596
|
+
color:currentColor;
|
|
3597
|
+
}
|
|
3598
|
+
:root{
|
|
3599
|
+
--ck-table-properties-error-arrow-size:6px;
|
|
3600
|
+
--ck-table-properties-min-error-width:150px;
|
|
3601
|
+
}
|
|
3602
|
+
.ck.ck-table-form.ck-table-properties-form_experimental{
|
|
3603
|
+
--ck-table-form-default-input-width:80px;
|
|
3604
|
+
}
|
|
3605
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck-form__row.ck-table-form__border-row .ck-labeled-field-view > .ck-label{
|
|
3606
|
+
font-size:var(--ck-font-size-tiny);
|
|
3607
|
+
text-align:center;
|
|
3608
|
+
}
|
|
3609
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck-form__row.ck-table-form__border-row .ck-table-form__border-style,
|
|
3610
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck-form__row.ck-table-form__border-row .ck-table-form__border-width{
|
|
3611
|
+
width:var(--ck-table-form-default-input-width);
|
|
3612
|
+
min-width:var(--ck-table-form-default-input-width);
|
|
3613
|
+
max-width:var(--ck-table-form-default-input-width);
|
|
3614
|
+
}
|
|
3615
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck-form__row.ck-table-form__dimensions-row{
|
|
3616
|
+
--ck-table-form-dimensions-input-width:calc(var(--ck-table-form-default-input-width) * 2 + var(--ck-spacing-large));
|
|
3617
|
+
|
|
3618
|
+
width:var(--ck-table-form-dimensions-input-width);
|
|
3619
|
+
max-width:var(--ck-table-form-dimensions-input-width);
|
|
3620
|
+
min-width:var(--ck-table-form-dimensions-input-width);
|
|
3621
|
+
padding:0;
|
|
3622
|
+
}
|
|
3623
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck-form__row.ck-table-form__dimensions-row .ck-table-form__dimensions-row__width,
|
|
3624
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck-form__row.ck-table-form__dimensions-row .ck-table-form__dimensions-row__height{
|
|
3625
|
+
width:var(--ck-table-form-default-input-width);
|
|
3626
|
+
min-width:var(--ck-table-form-default-input-width);
|
|
3627
|
+
max-width:var(--ck-table-form-default-input-width);
|
|
3628
|
+
margin:0
|
|
3629
|
+
}
|
|
3630
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck-form__row.ck-table-form__dimensions-row .ck-table-form__dimension-operator{
|
|
3631
|
+
position:relative;
|
|
3632
|
+
left:-0.5ch;
|
|
3633
|
+
width:0;
|
|
3634
|
+
overflow:visible;
|
|
3635
|
+
align-self:flex-end;
|
|
3636
|
+
display:inline-block;
|
|
3637
|
+
height:var(--ck-ui-component-min-height);
|
|
3638
|
+
line-height:var(--ck-ui-component-min-height);
|
|
3639
|
+
margin:0 var(--ck-spacing-small);
|
|
3640
|
+
}
|
|
3641
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck.ck-labeled-field-view{
|
|
3642
|
+
padding-top:var(--ck-spacing-standard);
|
|
3643
|
+
}
|
|
3644
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck.ck-labeled-field-view .ck.ck-labeled-field-view__status{
|
|
3645
|
+
border-radius:0;
|
|
3646
|
+
|
|
3647
|
+
background:var(--ck-color-base-error);
|
|
3648
|
+
color:var(--ck-color-base-background);
|
|
3649
|
+
padding:var(--ck-spacing-small) var(--ck-spacing-medium);
|
|
3650
|
+
min-width:var(--ck-table-properties-min-error-width);
|
|
3651
|
+
text-align:center;
|
|
3652
|
+
|
|
3653
|
+
animation:ck-table-form-labeled-view-status-appear .15s ease both;
|
|
3654
|
+
}
|
|
3655
|
+
.ck-rounded-corners .ck.ck-table-form.ck-table-properties-form_experimental .ck.ck-labeled-field-view .ck.ck-labeled-field-view__status,
|
|
3656
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck.ck-labeled-field-view .ck.ck-labeled-field-view__status.ck-rounded-corners{
|
|
3657
|
+
border-radius:var(--ck-border-radius);
|
|
3658
|
+
}
|
|
3659
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck.ck-labeled-field-view .ck.ck-labeled-field-view__status::after{
|
|
3660
|
+
border-color:transparent transparent var(--ck-color-base-error) transparent;
|
|
3661
|
+
border-width:0 var(--ck-table-properties-error-arrow-size) var(--ck-table-properties-error-arrow-size) var(--ck-table-properties-error-arrow-size);
|
|
3662
|
+
border-style:solid;
|
|
3663
|
+
}
|
|
3664
|
+
@media (prefers-reduced-motion: reduce){
|
|
3665
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck.ck-labeled-field-view .ck.ck-labeled-field-view__status{
|
|
3666
|
+
animation:none;
|
|
3667
|
+
}
|
|
3668
|
+
}
|
|
3669
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck.ck-labeled-field-view .ck-input.ck-error:not(:focus) + .ck.ck-labeled-field-view__status{
|
|
3670
|
+
display:none;
|
|
3671
|
+
}
|
|
3672
|
+
@keyframes ck-table-form-labeled-view-status-appear{
|
|
3673
|
+
0%{
|
|
3674
|
+
opacity:0;
|
|
3675
|
+
}
|
|
3676
|
+
|
|
3677
|
+
100%{
|
|
3678
|
+
opacity:1;
|
|
3679
|
+
}
|
|
3680
|
+
}
|
|
3681
|
+
.ck.ck-form__row > *:not(.ck-label) + *{
|
|
3682
|
+
margin-inline-start:var(--ck-spacing-large);
|
|
3683
|
+
}
|
|
3684
|
+
.ck.ck-form__row > .ck-label{
|
|
3685
|
+
width:100%;
|
|
3686
|
+
min-width:100%;
|
|
3687
|
+
}
|
|
3688
|
+
.ck.ck-form__row.ck-table-form__action-row{
|
|
3689
|
+
margin-top:var(--ck-spacing-large);
|
|
3690
|
+
}
|
|
3573
3691
|
:root{
|
|
3574
3692
|
--ck-widget-outline-thickness:3px;
|
|
3575
3693
|
--ck-widget-handler-icon-size:16px;
|
package/dist/index.css
CHANGED
|
@@ -5163,6 +5163,154 @@ a.ck.ck-button.ck-link-toolbar__preview:has( .ck-icon ) {
|
|
|
5163
5163
|
* Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
5164
5164
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
5165
5165
|
*/
|
|
5166
|
+
.ck.ck-table-properties-form {
|
|
5167
|
+
width: 320px;
|
|
5168
|
+
}
|
|
5169
|
+
.ck.ck-table-properties-form .ck-form__row.ck-table-properties-form__alignment-row {
|
|
5170
|
+
align-self: flex-end;
|
|
5171
|
+
}
|
|
5172
|
+
.ck.ck-table-properties-form .ck-form__row.ck-table-properties-form__alignment-row .ck.ck-toolbar {
|
|
5173
|
+
background: none;
|
|
5174
|
+
|
|
5175
|
+
/* Compensate for missing input label that would push the margin (toolbar has no inputs). */
|
|
5176
|
+
margin-top: var(--ck-spacing-standard);
|
|
5177
|
+
}
|
|
5178
|
+
.ck.ck-table-properties-form .ck-form__row.ck-table-properties-form__alignment-row .ck.ck-toolbar .ck-toolbar__items > * {
|
|
5179
|
+
flex: 1;
|
|
5180
|
+
}
|
|
5181
|
+
.ck.ck-table-properties-form.ck-table-properties-form_experimental .ck-form__row.ck-table-properties-form__alignment-row {
|
|
5182
|
+
padding: var(--ck-spacing-standard) var(--ck-spacing-large) 0;
|
|
5183
|
+
}
|
|
5184
|
+
.ck.ck-table-properties-form.ck-table-properties-form_experimental .ck-form__row.ck-table-form__action-row {
|
|
5185
|
+
justify-content: flex-end;
|
|
5186
|
+
}
|
|
5187
|
+
.ck.ck-table-properties-form.ck-table-properties-form_experimental .ck-form__row.ck-table-form__action-row > .ck.ck-button {
|
|
5188
|
+
flex-grow: initial;
|
|
5189
|
+
}
|
|
5190
|
+
.ck.ck-table-properties-form.ck-table-properties-form_experimental .ck-form__row.ck-table-form__action-row > .ck.ck-button .ck-button__label {
|
|
5191
|
+
color: currentColor;
|
|
5192
|
+
}
|
|
5193
|
+
/*
|
|
5194
|
+
* Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
5195
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
5196
|
+
*/
|
|
5197
|
+
/*
|
|
5198
|
+
* Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
5199
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
5200
|
+
*/
|
|
5201
|
+
/**
|
|
5202
|
+
* Implements rounded corner interface for .ck-rounded-corners class.
|
|
5203
|
+
*
|
|
5204
|
+
* @see $ck-border-radius
|
|
5205
|
+
*/
|
|
5206
|
+
:root {
|
|
5207
|
+
--ck-table-properties-error-arrow-size: 6px;
|
|
5208
|
+
--ck-table-properties-min-error-width: 150px;
|
|
5209
|
+
}
|
|
5210
|
+
.ck.ck-table-form.ck-table-properties-form_experimental {
|
|
5211
|
+
--ck-table-form-default-input-width: 80px;
|
|
5212
|
+
}
|
|
5213
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck-form__row.ck-table-form__border-row .ck-labeled-field-view > .ck-label {
|
|
5214
|
+
font-size: var(--ck-font-size-tiny);
|
|
5215
|
+
text-align: center;
|
|
5216
|
+
}
|
|
5217
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck-form__row.ck-table-form__border-row .ck-table-form__border-style,
|
|
5218
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck-form__row.ck-table-form__border-row .ck-table-form__border-width {
|
|
5219
|
+
width: var(--ck-table-form-default-input-width);
|
|
5220
|
+
min-width: var(--ck-table-form-default-input-width);
|
|
5221
|
+
max-width: var(--ck-table-form-default-input-width);
|
|
5222
|
+
}
|
|
5223
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck-form__row.ck-table-form__dimensions-row {
|
|
5224
|
+
--ck-table-form-dimensions-input-width: calc(var(--ck-table-form-default-input-width) * 2 + var(--ck-spacing-large));
|
|
5225
|
+
|
|
5226
|
+
width: var(--ck-table-form-dimensions-input-width);
|
|
5227
|
+
max-width: var(--ck-table-form-dimensions-input-width);
|
|
5228
|
+
min-width: var(--ck-table-form-dimensions-input-width);
|
|
5229
|
+
padding: 0;
|
|
5230
|
+
}
|
|
5231
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck-form__row.ck-table-form__dimensions-row .ck-table-form__dimensions-row__width,
|
|
5232
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck-form__row.ck-table-form__dimensions-row .ck-table-form__dimensions-row__height {
|
|
5233
|
+
width: var(--ck-table-form-default-input-width);
|
|
5234
|
+
min-width: var(--ck-table-form-default-input-width);
|
|
5235
|
+
max-width: var(--ck-table-form-default-input-width);
|
|
5236
|
+
margin: 0
|
|
5237
|
+
}
|
|
5238
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck-form__row.ck-table-form__dimensions-row .ck-table-form__dimension-operator {
|
|
5239
|
+
position: relative;
|
|
5240
|
+
left: -0.5ch;
|
|
5241
|
+
width: 0;
|
|
5242
|
+
overflow: visible;
|
|
5243
|
+
align-self: flex-end;
|
|
5244
|
+
display: inline-block;
|
|
5245
|
+
height: var(--ck-ui-component-min-height);
|
|
5246
|
+
line-height: var(--ck-ui-component-min-height);
|
|
5247
|
+
margin: 0 var(--ck-spacing-small);
|
|
5248
|
+
}
|
|
5249
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck.ck-labeled-field-view {
|
|
5250
|
+
padding-top: var(--ck-spacing-standard);
|
|
5251
|
+
}
|
|
5252
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck.ck-labeled-field-view .ck.ck-labeled-field-view__status {
|
|
5253
|
+
border-radius: 0;
|
|
5254
|
+
|
|
5255
|
+
background: var(--ck-color-base-error);
|
|
5256
|
+
color: var(--ck-color-base-background);
|
|
5257
|
+
padding: var(--ck-spacing-small) var(--ck-spacing-medium);
|
|
5258
|
+
min-width: var(--ck-table-properties-min-error-width);
|
|
5259
|
+
text-align: center;
|
|
5260
|
+
|
|
5261
|
+
animation: ck-table-form-labeled-view-status-appear .15s ease both;
|
|
5262
|
+
}
|
|
5263
|
+
.ck-rounded-corners .ck.ck-table-form.ck-table-properties-form_experimental .ck.ck-labeled-field-view .ck.ck-labeled-field-view__status,
|
|
5264
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck.ck-labeled-field-view .ck.ck-labeled-field-view__status.ck-rounded-corners {
|
|
5265
|
+
border-radius: var(--ck-border-radius);
|
|
5266
|
+
}
|
|
5267
|
+
/* The arrow pointing towards the field. */
|
|
5268
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck.ck-labeled-field-view .ck.ck-labeled-field-view__status::after {
|
|
5269
|
+
border-color: transparent transparent var(--ck-color-base-error) transparent;
|
|
5270
|
+
border-width: 0 var(--ck-table-properties-error-arrow-size) var(--ck-table-properties-error-arrow-size) var(--ck-table-properties-error-arrow-size);
|
|
5271
|
+
border-style: solid;
|
|
5272
|
+
}
|
|
5273
|
+
@media (prefers-reduced-motion: reduce) {
|
|
5274
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck.ck-labeled-field-view .ck.ck-labeled-field-view__status {
|
|
5275
|
+
animation: none;
|
|
5276
|
+
}
|
|
5277
|
+
}
|
|
5278
|
+
/* Hide the error balloon when the field is blurred. Makes the experience much more clear. */
|
|
5279
|
+
.ck.ck-table-form.ck-table-properties-form_experimental .ck.ck-labeled-field-view .ck-input.ck-error:not(:focus) + .ck.ck-labeled-field-view__status {
|
|
5280
|
+
display: none;
|
|
5281
|
+
}
|
|
5282
|
+
@keyframes ck-table-form-labeled-view-status-appear {
|
|
5283
|
+
0% {
|
|
5284
|
+
opacity: 0;
|
|
5285
|
+
}
|
|
5286
|
+
|
|
5287
|
+
100% {
|
|
5288
|
+
opacity: 1;
|
|
5289
|
+
}
|
|
5290
|
+
}
|
|
5291
|
+
/*
|
|
5292
|
+
* Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
5293
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
5294
|
+
*/
|
|
5295
|
+
/*
|
|
5296
|
+
* Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
5297
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
5298
|
+
*/
|
|
5299
|
+
/* Ignore labels that work as fieldset legends */
|
|
5300
|
+
.ck.ck-form__row > *:not(.ck-label) + * {
|
|
5301
|
+
margin-inline-start: var(--ck-spacing-large);
|
|
5302
|
+
}
|
|
5303
|
+
.ck.ck-form__row > .ck-label {
|
|
5304
|
+
width: 100%;
|
|
5305
|
+
min-width: 100%;
|
|
5306
|
+
}
|
|
5307
|
+
.ck.ck-form__row.ck-table-form__action-row {
|
|
5308
|
+
margin-top: var(--ck-spacing-large);
|
|
5309
|
+
}
|
|
5310
|
+
/*
|
|
5311
|
+
* Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
5312
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
5313
|
+
*/
|
|
5166
5314
|
/*
|
|
5167
5315
|
* Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
5168
5316
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|