@ckeditor/ckeditor5-theme-lark 43.2.0-alpha.7 → 43.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/dist/index.css CHANGED
@@ -343,12 +343,6 @@
343
343
  */
344
344
  .ck.ck-autocomplete > .ck-search__results {
345
345
  border-radius: 0;
346
- }
347
- .ck-rounded-corners .ck.ck-autocomplete > .ck-search__results, .ck.ck-autocomplete > .ck-search__results.ck-rounded-corners {
348
- border-radius: var(--ck-border-radius);
349
- }
350
- .ck.ck-autocomplete > .ck-search__results {
351
- box-shadow: var(--ck-drop-shadow), 0 0;
352
346
 
353
347
  max-height: 200px;
354
348
  overflow-y: auto;
@@ -356,6 +350,13 @@
356
350
  border: 1px solid var(--ck-color-dropdown-panel-border);
357
351
  min-width: auto;
358
352
  }
353
+ .ck-rounded-corners .ck.ck-autocomplete > .ck-search__results,
354
+ .ck.ck-autocomplete > .ck-search__results.ck-rounded-corners {
355
+ border-radius: var(--ck-border-radius);
356
+ }
357
+ .ck.ck-autocomplete > .ck-search__results {
358
+ box-shadow: var(--ck-drop-shadow), 0 0;
359
+ }
359
360
  .ck.ck-autocomplete > .ck-search__results.ck-search__results_n {
360
361
  border-bottom-left-radius: 0;
361
362
  border-bottom-right-radius: 0;
@@ -463,11 +464,11 @@ a.ck.ck-button {
463
464
  background: var(--ck-color-button-default-disabled-background);
464
465
  }
465
466
  .ck-rounded-corners .ck.ck-button,
466
- .ck-rounded-corners a.ck.ck-button,
467
- .ck.ck-button.ck-rounded-corners,
468
- a.ck.ck-button.ck-rounded-corners {
467
+ .ck-rounded-corners a.ck.ck-button,
468
+ .ck.ck-button.ck-rounded-corners,
469
+ a.ck.ck-button.ck-rounded-corners {
469
470
  border-radius: var(--ck-border-radius);
470
- }
471
+ }
471
472
  @media (prefers-reduced-motion: reduce) {
472
473
  .ck.ck-button,
473
474
  a.ck.ck-button {
@@ -509,6 +510,8 @@ a.ck.ck-button {
509
510
  }
510
511
  .ck.ck-button .ck-button__keystroke, a.ck.ck-button .ck-button__keystroke {
511
512
  color: inherit;
513
+
514
+ opacity: .5;
512
515
  }
513
516
  [dir="ltr"] .ck.ck-button .ck-button__keystroke, [dir="ltr"] a.ck.ck-button .ck-button__keystroke {
514
517
  margin-left: var(--ck-spacing-large);
@@ -516,10 +519,6 @@ a.ck.ck-button {
516
519
  [dir="rtl"] .ck.ck-button .ck-button__keystroke, [dir="rtl"] a.ck.ck-button .ck-button__keystroke {
517
520
  margin-right: var(--ck-spacing-large);
518
521
  }
519
- .ck.ck-button .ck-button__keystroke, a.ck.ck-button .ck-button__keystroke {
520
-
521
- opacity: .5;
522
- }
523
522
  /* https://github.com/ckeditor/ckeditor5-theme-lark/issues/70 */
524
523
  .ck.ck-button.ck-disabled:active,
525
524
  a.ck.ck-button.ck-disabled:active,
@@ -545,10 +544,10 @@ a.ck.ck-button {
545
544
  }
546
545
  [dir="ltr"] .ck.ck-button.ck-button_with-text .ck-button__icon, [dir="ltr"] a.ck.ck-button.ck-button_with-text .ck-button__icon {
547
546
  margin-right: var(--ck-spacing-medium);
548
- }
547
+ }
549
548
  [dir="rtl"] .ck.ck-button.ck-button_with-text .ck-button__icon, [dir="rtl"] a.ck.ck-button.ck-button_with-text .ck-button__icon {
550
549
  margin-left: var(--ck-spacing-medium);
551
- }
550
+ }
552
551
  /* stylelint-disable-next-line no-descending-specificity */
553
552
  .ck.ck-button.ck-button_with-keystroke .ck-button__label, a.ck.ck-button.ck-button_with-keystroke .ck-button__label {
554
553
  flex-grow: 1;
@@ -653,8 +652,16 @@ of the component, floating–point numbers have been used which, for the default
653
652
  }
654
653
  .ck.ck-button.ck-switchbutton .ck-button__toggle {
655
654
  border-radius: 0;
655
+
656
+ /* Apply some smooth transition to the box-shadow and border. */
657
+ /* Gently animate the background color of the toggle switch */
658
+ transition: background 400ms ease, box-shadow .2s ease-in-out, outline .2s ease-in-out;
659
+ border: 1px solid transparent;
660
+ width: var(--ck-switch-button-toggle-width);
661
+ background: var(--ck-color-switch-button-off-background);
656
662
  }
657
- .ck-rounded-corners .ck.ck-button.ck-switchbutton .ck-button__toggle, .ck.ck-button.ck-switchbutton .ck-button__toggle.ck-rounded-corners {
663
+ .ck-rounded-corners .ck.ck-button.ck-switchbutton .ck-button__toggle,
664
+ .ck.ck-button.ck-switchbutton .ck-button__toggle.ck-rounded-corners {
658
665
  border-radius: var(--ck-border-radius);
659
666
  }
660
667
  [dir="ltr"] .ck.ck-button.ck-switchbutton .ck-button__toggle {
@@ -665,23 +672,8 @@ of the component, floating–point numbers have been used which, for the default
665
672
  /* Make sure the toggle is always to the left as far as possible. */
666
673
  margin-right: auto;
667
674
  }
668
- .ck.ck-button.ck-switchbutton .ck-button__toggle {
669
-
670
- /* Apply some smooth transition to the box-shadow and border. */
671
- /* Gently animate the background color of the toggle switch */
672
- transition: background 400ms ease, box-shadow .2s ease-in-out, outline .2s ease-in-out;
673
- border: 1px solid transparent;
674
- width: var(--ck-switch-button-toggle-width);
675
- background: var(--ck-color-switch-button-off-background);
676
- }
677
675
  .ck.ck-button.ck-switchbutton .ck-button__toggle .ck-button__toggle__inner {
678
676
  border-radius: 0;
679
- }
680
- .ck-rounded-corners .ck.ck-button.ck-switchbutton .ck-button__toggle .ck-button__toggle__inner, .ck.ck-button.ck-switchbutton .ck-button__toggle .ck-button__toggle__inner.ck-rounded-corners {
681
- border-radius: var(--ck-border-radius);
682
- border-radius: calc(.5 * var(--ck-border-radius));
683
- }
684
- .ck.ck-button.ck-switchbutton .ck-button__toggle .ck-button__toggle__inner {
685
677
 
686
678
  width: var(--ck-switch-button-toggle-inner-size);
687
679
  height: var(--ck-switch-button-toggle-inner-size);
@@ -690,6 +682,11 @@ of the component, floating–point numbers have been used which, for the default
690
682
  /* Gently animate the inner part of the toggle switch */
691
683
  transition: all 300ms ease;
692
684
  }
685
+ .ck-rounded-corners .ck.ck-button.ck-switchbutton .ck-button__toggle .ck-button__toggle__inner,
686
+ .ck.ck-button.ck-switchbutton .ck-button__toggle .ck-button__toggle__inner.ck-rounded-corners {
687
+ border-radius: var(--ck-border-radius);
688
+ border-radius: calc(.5 * var(--ck-border-radius));
689
+ }
693
690
  @media (prefers-reduced-motion: reduce) {
694
691
  .ck.ck-button.ck-switchbutton .ck-button__toggle .ck-button__toggle__inner {
695
692
  transition: none;
@@ -727,10 +724,10 @@ of the component, floating–point numbers have been used which, for the default
727
724
  */
728
725
  [dir="ltr"] .ck.ck-button.ck-switchbutton.ck-on .ck-button__toggle .ck-button__toggle__inner {
729
726
  transform: translateX( var( --ck-switch-button-translation ) );
730
- }
727
+ }
731
728
  [dir="rtl"] .ck.ck-button.ck-switchbutton.ck-on .ck-button__toggle .ck-button__toggle__inner {
732
729
  transform: translateX( calc( -1 * var( --ck-switch-button-translation ) ) );
733
- }
730
+ }
734
731
  /*
735
732
  * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
736
733
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
@@ -919,10 +916,10 @@ of the component, floating–point numbers have been used which, for the default
919
916
  }
920
917
  [dir="ltr"] .ck.ck-color-selector .ck-color-grids-fragment .ck-button.ck-color-selector__color-picker .ck.ck-icon {
921
918
  margin-right: var(--ck-spacing-standard);
922
- }
919
+ }
923
920
  [dir="rtl"] .ck.ck-color-selector .ck-color-grids-fragment .ck-button.ck-color-selector__color-picker .ck.ck-icon {
924
921
  margin-left: var(--ck-spacing-standard);
925
- }
922
+ }
926
923
  .ck.ck-color-selector .ck-color-grids-fragment label.ck.ck-color-grid__label {
927
924
  font-weight: unset;
928
925
  }
@@ -990,12 +987,6 @@ of the component, floating–point numbers have been used which, for the default
990
987
  }
991
988
  .ck.ck-dialog {
992
989
  border-radius: 0;
993
- }
994
- .ck-rounded-corners .ck.ck-dialog, .ck.ck-dialog.ck-rounded-corners {
995
- border-radius: var(--ck-border-radius);
996
- }
997
- .ck.ck-dialog {
998
- box-shadow: var(--ck-drop-shadow), 0 0;
999
990
 
1000
991
  --ck-drop-shadow: var(--ck-dialog-drop-shadow);
1001
992
 
@@ -1003,10 +994,21 @@ of the component, floating–point numbers have been used which, for the default
1003
994
  max-height: var(--ck-dialog-max-height);
1004
995
  max-width: var(--ck-dialog-max-width);
1005
996
  border: 1px solid var(--ck-color-base-border);
997
+ overscroll-behavior: contain;
998
+ }
999
+ .ck-rounded-corners .ck.ck-dialog,
1000
+ .ck.ck-dialog.ck-rounded-corners {
1001
+ border-radius: var(--ck-border-radius);
1002
+ }
1003
+ .ck.ck-dialog {
1004
+ box-shadow: var(--ck-drop-shadow), 0 0;
1006
1005
  }
1007
1006
  .ck.ck-dialog .ck.ck-form__header {
1008
1007
  border-bottom: 1px solid var(--ck-color-dialog-form-header-border);
1009
1008
  }
1009
+ .ck-dialog-scroll-locked {
1010
+ overflow: hidden;
1011
+ }
1010
1012
  @keyframes ck-dialog-fade-in {
1011
1013
  0% {
1012
1014
  background: hsla( 0, 0%, 0%, 0 );
@@ -1121,12 +1123,6 @@ of the component, floating–point numbers have been used which, for the default
1121
1123
  }
1122
1124
  .ck.ck-dropdown__panel {
1123
1125
  border-radius: 0;
1124
- }
1125
- .ck-rounded-corners .ck.ck-dropdown__panel, .ck.ck-dropdown__panel.ck-rounded-corners {
1126
- border-radius: var(--ck-border-radius);
1127
- }
1128
- .ck.ck-dropdown__panel {
1129
- box-shadow: var(--ck-drop-shadow), 0 0;
1130
1126
 
1131
1127
  background: var(--ck-color-dropdown-panel-background);
1132
1128
  border: 1px solid var(--ck-color-dropdown-panel-border);
@@ -1134,6 +1130,13 @@ of the component, floating–point numbers have been used which, for the default
1134
1130
 
1135
1131
  /* Make sure the panel is at least as wide as the drop-down's button. */
1136
1132
  min-width: 100%;
1133
+ }
1134
+ .ck-rounded-corners .ck.ck-dropdown__panel,
1135
+ .ck.ck-dropdown__panel.ck-rounded-corners {
1136
+ border-radius: var(--ck-border-radius);
1137
+ }
1138
+ .ck.ck-dropdown__panel {
1139
+ box-shadow: var(--ck-drop-shadow), 0 0;
1137
1140
 
1138
1141
  /* Disabled corner border radius to be consistent with the .dropdown__button
1139
1142
  https://github.com/ckeditor/ckeditor5/issues/816 */
@@ -1171,29 +1174,32 @@ of the component, floating–point numbers have been used which, for the default
1171
1174
  https://github.com/ckeditor/ckeditor5/issues/816 */
1172
1175
  border-radius: 0;
1173
1176
  }
1174
- .ck-rounded-corners .ck.ck-dropdown > .ck-dropdown__panel > .ck-list, .ck.ck-dropdown > .ck-dropdown__panel > .ck-list.ck-rounded-corners {
1177
+ .ck-rounded-corners .ck.ck-dropdown > .ck-dropdown__panel > .ck-list,
1178
+ .ck.ck-dropdown > .ck-dropdown__panel > .ck-list.ck-rounded-corners {
1175
1179
  border-radius: var(--ck-border-radius);
1176
1180
  border-top-left-radius: 0;
1177
- }
1181
+ }
1178
1182
  /* Make sure the button belonging to the first/last child of the list goes well with the
1179
1183
  border radius of the entire panel. */
1180
1184
  .ck.ck-dropdown > .ck-dropdown__panel > .ck-list .ck-list__item:first-child > .ck-button {
1181
1185
  border-radius: 0;
1182
1186
  }
1183
- .ck-rounded-corners .ck.ck-dropdown > .ck-dropdown__panel > .ck-list .ck-list__item:first-child > .ck-button, .ck.ck-dropdown > .ck-dropdown__panel > .ck-list .ck-list__item:first-child > .ck-button.ck-rounded-corners {
1187
+ .ck-rounded-corners .ck.ck-dropdown > .ck-dropdown__panel > .ck-list .ck-list__item:first-child > .ck-button,
1188
+ .ck.ck-dropdown > .ck-dropdown__panel > .ck-list .ck-list__item:first-child > .ck-button.ck-rounded-corners {
1184
1189
  border-radius: var(--ck-border-radius);
1185
1190
  border-top-left-radius: 0;
1186
1191
  border-bottom-left-radius: 0;
1187
1192
  border-bottom-right-radius: 0;
1188
- }
1193
+ }
1189
1194
  .ck.ck-dropdown > .ck-dropdown__panel > .ck-list .ck-list__item:last-child > .ck-button {
1190
1195
  border-radius: 0;
1191
1196
  }
1192
- .ck-rounded-corners .ck.ck-dropdown > .ck-dropdown__panel > .ck-list .ck-list__item:last-child > .ck-button, .ck.ck-dropdown > .ck-dropdown__panel > .ck-list .ck-list__item:last-child > .ck-button.ck-rounded-corners {
1197
+ .ck-rounded-corners .ck.ck-dropdown > .ck-dropdown__panel > .ck-list .ck-list__item:last-child > .ck-button,
1198
+ .ck.ck-dropdown > .ck-dropdown__panel > .ck-list .ck-list__item:last-child > .ck-button.ck-rounded-corners {
1193
1199
  border-radius: var(--ck-border-radius);
1194
1200
  border-top-left-radius: 0;
1195
1201
  border-top-right-radius: 0;
1196
- }
1202
+ }
1197
1203
  /*
1198
1204
  * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
1199
1205
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
@@ -1214,18 +1220,16 @@ of the component, floating–point numbers have been used which, for the default
1214
1220
  /*
1215
1221
  * Note: ck-rounded and ck-dir mixins don't go together (because they both use @nest).
1216
1222
  */
1217
- [dir="ltr"] .ck.ck-splitbutton:hover > .ck-splitbutton__action,
1218
- [dir="ltr"] .ck.ck-splitbutton.ck-splitbutton_open > .ck-splitbutton__action {
1223
+ [dir="ltr"] .ck.ck-splitbutton:hover > .ck-splitbutton__action, [dir="ltr"] .ck.ck-splitbutton.ck-splitbutton_open > .ck-splitbutton__action {
1219
1224
  /* Don't round the action button on the right side */
1220
1225
  border-top-right-radius: unset;
1221
1226
  border-bottom-right-radius: unset;
1222
- }
1223
- [dir="rtl"] .ck.ck-splitbutton:hover > .ck-splitbutton__action,
1224
- [dir="rtl"] .ck.ck-splitbutton.ck-splitbutton_open > .ck-splitbutton__action {
1227
+ }
1228
+ [dir="rtl"] .ck.ck-splitbutton:hover > .ck-splitbutton__action, [dir="rtl"] .ck.ck-splitbutton.ck-splitbutton_open > .ck-splitbutton__action {
1225
1229
  /* Don't round the action button on the left side */
1226
1230
  border-top-left-radius: unset;
1227
1231
  border-bottom-left-radius: unset;
1228
- }
1232
+ }
1229
1233
  .ck.ck-splitbutton > .ck-splitbutton__arrow {
1230
1234
  /* It's a text-less button and since the icon is positioned absolutely in such situation,
1231
1235
  it must get some arbitrary min-width. */
@@ -1235,12 +1239,12 @@ of the component, floating–point numbers have been used which, for the default
1235
1239
  /* Don't round the arrow button on the left side */
1236
1240
  border-top-left-radius: unset;
1237
1241
  border-bottom-left-radius: unset;
1238
- }
1242
+ }
1239
1243
  [dir="rtl"] .ck.ck-splitbutton > .ck-splitbutton__arrow {
1240
1244
  /* Don't round the arrow button on the right side */
1241
1245
  border-top-right-radius: unset;
1242
1246
  border-bottom-right-radius: unset;
1243
- }
1247
+ }
1244
1248
  .ck.ck-splitbutton > .ck-splitbutton__arrow svg {
1245
1249
  width: var(--ck-dropdown-arrow-size);
1246
1250
  }
@@ -1250,6 +1254,21 @@ of the component, floating–point numbers have been used which, for the default
1250
1254
  border-top-width: 0px;
1251
1255
  border-bottom-width: 0px;
1252
1256
  }
1257
+ /* Don't round the bottom left and right corners of the buttons when "open"
1258
+ https://github.com/ckeditor/ckeditor5/issues/816 */
1259
+ .ck.ck-splitbutton.ck-splitbutton_open {
1260
+ border-radius: 0;
1261
+ }
1262
+ .ck-rounded-corners .ck.ck-splitbutton.ck-splitbutton_open,
1263
+ .ck.ck-splitbutton.ck-splitbutton_open.ck-rounded-corners {
1264
+ border-radius: var(--ck-border-radius);
1265
+ }
1266
+ .ck-rounded-corners .ck.ck-splitbutton.ck-splitbutton_open > .ck-splitbutton__action, .ck.ck-splitbutton.ck-splitbutton_open.ck-rounded-corners > .ck-splitbutton__action {
1267
+ border-bottom-left-radius: 0;
1268
+ }
1269
+ .ck-rounded-corners .ck.ck-splitbutton.ck-splitbutton_open > .ck-splitbutton__arrow, .ck.ck-splitbutton.ck-splitbutton_open.ck-rounded-corners > .ck-splitbutton__arrow {
1270
+ border-bottom-right-radius: 0;
1271
+ }
1253
1272
  /* When the split button is "open" (the arrow is on) or being hovered, it should get some styling
1254
1273
  as a whole. The background of both buttons should stand out and there should be a visual
1255
1274
  separation between both buttons. */
@@ -1276,20 +1295,6 @@ of the component, floating–point numbers have been used which, for the default
1276
1295
  [dir="rtl"] .ck.ck-splitbutton.ck-splitbutton_open > .ck-splitbutton__arrow:not(.ck-disabled)::after, [dir="rtl"] .ck.ck-splitbutton:hover > .ck-splitbutton__arrow:not(.ck-disabled)::after {
1277
1296
  right: -1px;
1278
1297
  }
1279
- /* Don't round the bottom left and right corners of the buttons when "open"
1280
- https://github.com/ckeditor/ckeditor5/issues/816 */
1281
- .ck.ck-splitbutton.ck-splitbutton_open {
1282
- border-radius: 0;
1283
- }
1284
- .ck-rounded-corners .ck.ck-splitbutton.ck-splitbutton_open, .ck.ck-splitbutton.ck-splitbutton_open.ck-rounded-corners {
1285
- border-radius: var(--ck-border-radius);
1286
- }
1287
- .ck-rounded-corners .ck.ck-splitbutton.ck-splitbutton_open > .ck-splitbutton__action, .ck.ck-splitbutton.ck-splitbutton_open.ck-rounded-corners > .ck-splitbutton__action {
1288
- border-bottom-left-radius: 0;
1289
- }
1290
- .ck-rounded-corners .ck.ck-splitbutton.ck-splitbutton_open > .ck-splitbutton__arrow, .ck.ck-splitbutton.ck-splitbutton_open.ck-rounded-corners > .ck-splitbutton__arrow {
1291
- border-bottom-right-radius: 0;
1292
- }
1293
1298
  /*
1294
1299
  * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
1295
1300
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
@@ -1642,9 +1647,10 @@ of the component, floating–point numbers have been used which, for the default
1642
1647
  .ck.ck-editor__editable:not(.ck-editor__nested-editable) {
1643
1648
  border-radius: 0;
1644
1649
  }
1645
- .ck-rounded-corners .ck.ck-editor__editable:not(.ck-editor__nested-editable), .ck.ck-editor__editable.ck-rounded-corners:not(.ck-editor__nested-editable) {
1650
+ .ck-rounded-corners .ck.ck-editor__editable:not(.ck-editor__nested-editable),
1651
+ .ck.ck-editor__editable.ck-rounded-corners:not(.ck-editor__nested-editable) {
1646
1652
  border-radius: var(--ck-border-radius);
1647
- }
1653
+ }
1648
1654
  .ck.ck-editor__editable.ck-focused:not(.ck-editor__nested-editable) {
1649
1655
  /* Disable native outline. */
1650
1656
  outline: none;
@@ -1786,11 +1792,6 @@ of the component, floating–point numbers have been used which, for the default
1786
1792
  }
1787
1793
  .ck.ck-input {
1788
1794
  border-radius: 0;
1789
- }
1790
- .ck-rounded-corners .ck.ck-input, .ck.ck-input.ck-rounded-corners {
1791
- border-radius: var(--ck-border-radius);
1792
- }
1793
- .ck.ck-input {
1794
1795
 
1795
1796
  background: var(--ck-color-input-background);
1796
1797
  border: 1px solid var(--ck-color-input-border);
@@ -1803,6 +1804,10 @@ of the component, floating–point numbers have been used which, for the default
1803
1804
  /* Apply some smooth transition to the box-shadow and border. */
1804
1805
  transition: box-shadow .1s ease-in-out, border .1s ease-in-out;
1805
1806
  }
1807
+ .ck-rounded-corners .ck.ck-input,
1808
+ .ck.ck-input.ck-rounded-corners {
1809
+ border-radius: var(--ck-border-radius);
1810
+ }
1806
1811
  @media (prefers-reduced-motion: reduce) {
1807
1812
  .ck.ck-input {
1808
1813
  transition: none;
@@ -1886,27 +1891,15 @@ of the component, floating–point numbers have been used which, for the default
1886
1891
  .ck.ck-labeled-field-view {
1887
1892
  border-radius: 0;
1888
1893
  }
1889
- .ck-rounded-corners .ck.ck-labeled-field-view, .ck.ck-labeled-field-view.ck-rounded-corners {
1894
+ .ck-rounded-corners .ck.ck-labeled-field-view,
1895
+ .ck.ck-labeled-field-view.ck-rounded-corners {
1890
1896
  border-radius: var(--ck-border-radius);
1891
- }
1897
+ }
1892
1898
  .ck.ck-labeled-field-view > .ck.ck-labeled-field-view__input-wrapper {
1893
1899
  width: 100%;
1894
1900
  }
1895
1901
  .ck.ck-labeled-field-view > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label {
1896
1902
  top: 0px;
1897
- }
1898
- [dir="ltr"] .ck.ck-labeled-field-view > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label {
1899
- left: 0px;
1900
- transform-origin: 0 0;
1901
- /* By default, display the label scaled down above the field. */
1902
- transform: translate(var(--ck-spacing-medium), -6px) scale(.75);
1903
- }
1904
- [dir="rtl"] .ck.ck-labeled-field-view > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label {
1905
- right: 0px;
1906
- transform-origin: 100% 0;
1907
- transform: translate(calc(-1 * var(--ck-spacing-medium)), -6px) scale(.75);
1908
- }
1909
- .ck.ck-labeled-field-view > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label {
1910
1903
 
1911
1904
  pointer-events: none;
1912
1905
 
@@ -1926,6 +1919,17 @@ of the component, floating–point numbers have been used which, for the default
1926
1919
  padding var(--ck-labeled-field-view-transition),
1927
1920
  background var(--ck-labeled-field-view-transition);
1928
1921
  }
1922
+ [dir="ltr"] .ck.ck-labeled-field-view > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label {
1923
+ left: 0px;
1924
+ transform-origin: 0 0;
1925
+ /* By default, display the label scaled down above the field. */
1926
+ transform: translate(var(--ck-spacing-medium), -6px) scale(.75);
1927
+ }
1928
+ [dir="rtl"] .ck.ck-labeled-field-view > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label {
1929
+ right: 0px;
1930
+ transform-origin: 100% 0;
1931
+ transform: translate(calc(-1 * var(--ck-spacing-medium)), -6px) scale(.75);
1932
+ }
1929
1933
  @media (prefers-reduced-motion: reduce) {
1930
1934
  .ck.ck-labeled-field-view > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label {
1931
1935
  transition: none;
@@ -1955,14 +1959,6 @@ of the component, floating–point numbers have been used which, for the default
1955
1959
  }
1956
1960
  /* Fields that are disabled or not focused and without a placeholder should have full-sized labels. */
1957
1961
  /* stylelint-disable-next-line no-descending-specificity */
1958
- [dir="ltr"] .ck.ck-labeled-field-view.ck-disabled.ck-labeled-field-view_empty:not(.ck-labeled-field-view_placeholder) > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label,
1959
- [dir="ltr"] .ck.ck-labeled-field-view.ck-labeled-field-view_empty:not(.ck-labeled-field-view_focused):not(.ck-labeled-field-view_placeholder):not(.ck-error) > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label {
1960
- transform: translate(var(--ck-labeled-field-label-default-position-x), var(--ck-labeled-field-label-default-position-y)) scale(1);
1961
- }
1962
- [dir="rtl"] .ck.ck-labeled-field-view.ck-disabled.ck-labeled-field-view_empty:not(.ck-labeled-field-view_placeholder) > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label,
1963
- [dir="rtl"] .ck.ck-labeled-field-view.ck-labeled-field-view_empty:not(.ck-labeled-field-view_focused):not(.ck-labeled-field-view_placeholder):not(.ck-error) > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label {
1964
- transform: translate(calc(-1 * var(--ck-labeled-field-label-default-position-x)), var(--ck-labeled-field-label-default-position-y)) scale(1);
1965
- }
1966
1962
  .ck.ck-labeled-field-view.ck-disabled.ck-labeled-field-view_empty:not(.ck-labeled-field-view_placeholder) > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label,
1967
1963
  .ck.ck-labeled-field-view.ck-labeled-field-view_empty:not(.ck-labeled-field-view_focused):not(.ck-labeled-field-view_placeholder):not(.ck-error) > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label {
1968
1964
 
@@ -1972,6 +1968,12 @@ of the component, floating–point numbers have been used which, for the default
1972
1968
  background: transparent;
1973
1969
  padding: 0;
1974
1970
  }
1971
+ [dir="ltr"] .ck.ck-labeled-field-view.ck-disabled.ck-labeled-field-view_empty:not(.ck-labeled-field-view_placeholder) > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label, [dir="ltr"] .ck.ck-labeled-field-view.ck-labeled-field-view_empty:not(.ck-labeled-field-view_focused):not(.ck-labeled-field-view_placeholder):not(.ck-error) > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label {
1972
+ transform: translate(var(--ck-labeled-field-label-default-position-x), var(--ck-labeled-field-label-default-position-y)) scale(1);
1973
+ }
1974
+ [dir="rtl"] .ck.ck-labeled-field-view.ck-disabled.ck-labeled-field-view_empty:not(.ck-labeled-field-view_placeholder) > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label, [dir="rtl"] .ck.ck-labeled-field-view.ck-labeled-field-view_empty:not(.ck-labeled-field-view_focused):not(.ck-labeled-field-view_placeholder):not(.ck-error) > .ck.ck-labeled-field-view__input-wrapper > .ck.ck-label {
1975
+ transform: translate(calc(-1 * var(--ck-labeled-field-label-default-position-x)), var(--ck-labeled-field-label-default-position-y)) scale(1);
1976
+ }
1975
1977
  /*------ DropdownView integration ----------------------------------------------------------------------------------- */
1976
1978
  /* Make sure dropdown' background color in any of dropdown's state does not collide with labeled field. */
1977
1979
  .ck.ck-labeled-field-view > .ck.ck-labeled-field-view__input-wrapper > .ck-dropdown > .ck.ck-button {
@@ -2036,11 +2038,6 @@ of the component, floating–point numbers have been used which, for the default
2036
2038
  */
2037
2039
  .ck.ck-list {
2038
2040
  border-radius: 0;
2039
- }
2040
- .ck-rounded-corners .ck.ck-list, .ck.ck-list.ck-rounded-corners {
2041
- border-radius: var(--ck-border-radius);
2042
- }
2043
- .ck.ck-list {
2044
2041
 
2045
2042
  list-style-type: none;
2046
2043
  background: var(--ck-color-list-background);
@@ -2048,6 +2045,10 @@ of the component, floating–point numbers have been used which, for the default
2048
2045
  /* A spacing at the beginning and end of the list */
2049
2046
  padding: var(--ck-spacing-small) 0;
2050
2047
  }
2048
+ .ck-rounded-corners .ck.ck-list,
2049
+ .ck.ck-list.ck-rounded-corners {
2050
+ border-radius: var(--ck-border-radius);
2051
+ }
2051
2052
  .ck.ck-list__item {
2052
2053
  cursor: default;
2053
2054
 
@@ -2229,7 +2230,7 @@ of the component, floating–point numbers have been used which, for the default
2229
2230
 
2230
2231
  /* Nudge the arrow gently to the right because its center of gravity is to the left */
2231
2232
  margin-right: calc(-1 * var(--ck-spacing-small));
2232
- }
2233
+ }
2233
2234
  [dir="rtl"] .ck.ck-menu-bar__menu:not(.ck-menu-bar__menu_top-level) .ck-menu-bar__menu__button > .ck-menu-bar__menu__button__arrow {
2234
2235
  transform: rotate(90deg);
2235
2236
 
@@ -2240,7 +2241,7 @@ of the component, floating–point numbers have been used which, for the default
2240
2241
 
2241
2242
  /* Nudge the arrow gently to the left because its center of gravity is to the right (after rotation). */
2242
2243
  margin-left: calc(-1 * var(--ck-spacing-small));
2243
- }
2244
+ }
2244
2245
  .ck.ck-menu-bar__menu:not(.ck-menu-bar__menu_top-level) .ck-menu-bar__menu__button.ck-disabled > .ck-menu-bar__menu__button__arrow {
2245
2246
  opacity: var(--ck-disabled-opacity);
2246
2247
  }
@@ -2279,10 +2280,10 @@ of the component, floating–point numbers have been used which, for the default
2279
2280
  }
2280
2281
  [dir="ltr"] .ck.ck-menu-bar__menu .ck-button.ck-menu-bar__menu__item__button > .ck-spinner-container {
2281
2282
  margin-right: var(--ck-spacing-medium);
2282
- }
2283
+ }
2283
2284
  [dir="rtl"] .ck.ck-menu-bar__menu .ck-button.ck-menu-bar__menu__item__button > .ck-spinner-container {
2284
2285
  margin-left: var(--ck-spacing-medium);
2285
- }
2286
+ }
2286
2287
  /*
2287
2288
  * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2288
2289
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
@@ -2318,18 +2319,19 @@ of the component, floating–point numbers have been used which, for the default
2318
2319
  }
2319
2320
  .ck.ck-menu-bar__menu > .ck.ck-menu-bar__menu__panel {
2320
2321
  border-radius: 0;
2321
- }
2322
- .ck-rounded-corners .ck.ck-menu-bar__menu > .ck.ck-menu-bar__menu__panel, .ck.ck-menu-bar__menu > .ck.ck-menu-bar__menu__panel.ck-rounded-corners {
2323
- border-radius: var(--ck-border-radius);
2324
- }
2325
- .ck.ck-menu-bar__menu > .ck.ck-menu-bar__menu__panel {
2326
- box-shadow: var(--ck-drop-shadow), 0 0;
2327
2322
 
2328
2323
  background: var(--ck-color-dropdown-panel-background);
2329
2324
  border: 1px solid var(--ck-color-dropdown-panel-border);
2330
2325
  bottom: 0;
2331
2326
  height: fit-content;
2332
2327
  max-width: var(--ck-menu-bar-menu-panel-max-width);
2328
+ }
2329
+ .ck-rounded-corners .ck.ck-menu-bar__menu > .ck.ck-menu-bar__menu__panel,
2330
+ .ck.ck-menu-bar__menu > .ck.ck-menu-bar__menu__panel.ck-rounded-corners {
2331
+ border-radius: var(--ck-border-radius);
2332
+ }
2333
+ .ck.ck-menu-bar__menu > .ck.ck-menu-bar__menu__panel {
2334
+ box-shadow: var(--ck-drop-shadow), 0 0;
2333
2335
 
2334
2336
  /* Corner border radius consistent with the button. */
2335
2337
  }
@@ -2402,18 +2404,19 @@ of the component, floating–point numbers have been used which, for the default
2402
2404
  }
2403
2405
  .ck.ck-balloon-panel {
2404
2406
  border-radius: 0;
2405
- }
2406
- .ck-rounded-corners .ck.ck-balloon-panel, .ck.ck-balloon-panel.ck-rounded-corners {
2407
- border-radius: var(--ck-border-radius);
2408
- }
2409
- .ck.ck-balloon-panel {
2410
- box-shadow: var(--ck-drop-shadow), 0 0;
2411
2407
 
2412
2408
  min-height: 15px;
2413
2409
 
2414
2410
  background: var(--ck-color-panel-background);
2415
2411
  border: var(--ck-balloon-border-width) solid var(--ck-color-panel-border);
2416
2412
  }
2413
+ .ck-rounded-corners .ck.ck-balloon-panel,
2414
+ .ck.ck-balloon-panel.ck-rounded-corners {
2415
+ border-radius: var(--ck-border-radius);
2416
+ }
2417
+ .ck.ck-balloon-panel {
2418
+ box-shadow: var(--ck-drop-shadow), 0 0;
2419
+ }
2417
2420
  .ck.ck-balloon-panel.ck-balloon-panel_with-arrow::before,
2418
2421
  .ck.ck-balloon-panel.ck-balloon-panel_with-arrow::after {
2419
2422
  width: 0;
@@ -2699,15 +2702,13 @@ of the component, floating–point numbers have been used which, for the default
2699
2702
  border-top: 1px solid var(--ck-color-base-border);
2700
2703
  }
2701
2704
 
2702
- [dir="ltr"] .ck.ck-responsive-form > .ck-button:nth-last-child(1),
2703
- [dir="ltr"] .ck.ck-responsive-form > .ck-button:nth-last-child(2) {
2705
+ [dir="ltr"] .ck.ck-responsive-form > .ck-button:nth-last-child(1), [dir="ltr"] .ck.ck-responsive-form > .ck-button:nth-last-child(2) {
2704
2706
  margin-left: 0;
2705
- }
2707
+ }
2706
2708
 
2707
- [dir="rtl"] .ck.ck-responsive-form > .ck-button:nth-last-child(1),
2708
- [dir="rtl"] .ck.ck-responsive-form > .ck-button:nth-last-child(2) {
2709
+ [dir="rtl"] .ck.ck-responsive-form > .ck-button:nth-last-child(1), [dir="rtl"] .ck.ck-responsive-form > .ck-button:nth-last-child(2) {
2709
2710
  margin-left: 0;
2710
- }
2711
+ }
2711
2712
 
2712
2713
  [dir="rtl"] .ck.ck-responsive-form > .ck-button:nth-last-child(1):last-of-type, [dir="rtl"] .ck.ck-responsive-form > .ck-button:nth-last-child(2):last-of-type {
2713
2714
  border-right: 1px solid var(--ck-color-base-border);
@@ -2739,7 +2740,7 @@ of the component, floating–point numbers have been used which, for the default
2739
2740
  }
2740
2741
  [dir="ltr"] .ck.ck-search > .ck-labeled-field-view.ck-search__query_with-icon .ck-input {
2741
2742
  padding-left: var(--ck-search-field-view-horizontal-spacing);
2742
- }
2743
+ }
2743
2744
  [dir="rtl"] .ck.ck-search > .ck-labeled-field-view.ck-search__query_with-icon .ck-input:not(.ck-input-text_empty) {
2744
2745
  padding-left: var(--ck-search-field-view-horizontal-spacing);
2745
2746
  }
@@ -2759,10 +2760,10 @@ of the component, floating–point numbers have been used which, for the default
2759
2760
  }
2760
2761
  [dir="ltr"] .ck.ck-search > .ck-labeled-field-view.ck-search__query_with-reset .ck-search__reset {
2761
2762
  right: var(--ck-spacing-medium);
2762
- }
2763
+ }
2763
2764
  [dir="rtl"] .ck.ck-search > .ck-labeled-field-view.ck-search__query_with-reset .ck-search__reset {
2764
2765
  left: var(--ck-spacing-medium);
2765
- }
2766
+ }
2766
2767
  .ck.ck-search > .ck-labeled-field-view.ck-search__query_with-reset .ck-search__reset:hover {
2767
2768
  opacity: 1;
2768
2769
  }
@@ -2774,7 +2775,7 @@ of the component, floating–point numbers have been used which, for the default
2774
2775
  }
2775
2776
  [dir="rtl"] .ck.ck-search > .ck-labeled-field-view.ck-search__query_with-reset .ck-input {
2776
2777
  padding-right: var(--ck-search-field-view-horizontal-spacing);
2777
- }
2778
+ }
2778
2779
  .ck.ck-search > .ck-search__results {
2779
2780
  min-width: 100%;
2780
2781
  }
@@ -2862,16 +2863,15 @@ of the component, floating–point numbers have been used which, for the default
2862
2863
  */
2863
2864
  .ck.ck-toolbar {
2864
2865
  border-radius: 0;
2865
- }
2866
- .ck-rounded-corners .ck.ck-toolbar, .ck.ck-toolbar.ck-rounded-corners {
2867
- border-radius: var(--ck-border-radius);
2868
- }
2869
- .ck.ck-toolbar {
2870
2866
 
2871
2867
  background: var(--ck-color-toolbar-background);
2872
2868
  padding: 0 var(--ck-spacing-small);
2873
2869
  border: 1px solid var(--ck-color-toolbar-border);
2874
2870
  }
2871
+ .ck-rounded-corners .ck.ck-toolbar,
2872
+ .ck.ck-toolbar.ck-rounded-corners {
2873
+ border-radius: var(--ck-border-radius);
2874
+ }
2875
2875
  .ck.ck-toolbar .ck.ck-toolbar__separator {
2876
2876
  height: var(--ck-icon-size);
2877
2877
  width: 1px;
@@ -2953,7 +2953,7 @@ of the component, floating–point numbers have been used which, for the default
2953
2953
  }
2954
2954
  .ck-toolbar-container .ck.ck-toolbar {
2955
2955
  border: 0;
2956
- }
2956
+ }
2957
2957
  /* stylelint-disable */
2958
2958
  /*
2959
2959
  * Styles for RTL toolbars.
@@ -3075,17 +3075,16 @@ of the component, floating–point numbers have been used which, for the default
3075
3075
  */
3076
3076
  .ck.ck-editor__top .ck-sticky-panel .ck-sticky-panel__content {
3077
3077
  border-radius: 0;
3078
- }
3079
- .ck-rounded-corners .ck.ck-editor__top .ck-sticky-panel .ck-sticky-panel__content, .ck.ck-editor__top .ck-sticky-panel .ck-sticky-panel__content.ck-rounded-corners {
3080
- border-radius: var(--ck-border-radius);
3081
- border-bottom-left-radius: 0;
3082
- border-bottom-right-radius: 0;
3083
- }
3084
- .ck.ck-editor__top .ck-sticky-panel .ck-sticky-panel__content {
3085
3078
 
3086
3079
  border: 1px solid var(--ck-color-base-border);
3087
3080
  border-bottom-width: 0;
3088
3081
  }
3082
+ .ck-rounded-corners .ck.ck-editor__top .ck-sticky-panel .ck-sticky-panel__content,
3083
+ .ck.ck-editor__top .ck-sticky-panel .ck-sticky-panel__content.ck-rounded-corners {
3084
+ border-radius: var(--ck-border-radius);
3085
+ border-bottom-left-radius: 0;
3086
+ border-bottom-right-radius: 0;
3087
+ }
3089
3088
  .ck.ck-editor__top .ck-sticky-panel .ck-sticky-panel__content.ck-sticky-panel__content_sticky {
3090
3089
  border-bottom-width: 1px;
3091
3090
  }
@@ -3103,11 +3102,12 @@ of the component, floating–point numbers have been used which, for the default
3103
3102
 
3104
3103
  border-radius: 0;
3105
3104
  }
3106
- .ck-rounded-corners .ck.ck-editor__main > .ck-editor__editable, .ck.ck-editor__main > .ck-editor__editable.ck-rounded-corners {
3105
+ .ck-rounded-corners .ck.ck-editor__main > .ck-editor__editable,
3106
+ .ck.ck-editor__main > .ck-editor__editable.ck-rounded-corners {
3107
3107
  border-radius: var(--ck-border-radius);
3108
3108
  border-top-left-radius: 0;
3109
3109
  border-top-right-radius: 0;
3110
- }
3110
+ }
3111
3111
  .ck.ck-editor__main > .ck-editor__editable:not(.ck-focused) {
3112
3112
  border-color: var(--ck-color-base-border);
3113
3113
  }
@@ -3324,27 +3324,25 @@ of the component, floating–point numbers have been used which, for the default
3324
3324
  .ck.ck-find-and-replace-form .ck-find-and-replace-form__inputs .ck-results-counter {
3325
3325
  top: 50%;
3326
3326
  transform: translateY(-50%);
3327
+
3328
+ color: var(--ck-color-base-border);
3327
3329
  }
3328
3330
  [dir="ltr"] .ck.ck-find-and-replace-form .ck-find-and-replace-form__inputs .ck-results-counter {
3329
3331
  right: var(--ck-spacing-standard);
3330
- }
3332
+ }
3331
3333
  [dir="rtl"] .ck.ck-find-and-replace-form .ck-find-and-replace-form__inputs .ck-results-counter {
3332
3334
  left: var(--ck-spacing-standard);
3333
- }
3334
- .ck.ck-find-and-replace-form .ck-find-and-replace-form__inputs .ck-results-counter {
3335
-
3336
- color: var(--ck-color-base-border);
3337
- }
3335
+ }
3338
3336
  .ck.ck-find-and-replace-form .ck-find-and-replace-form__inputs > .ck-labeled-field-replace {
3339
3337
  flex: 0 0 100%;
3340
3338
  padding-top: var(--ck-spacing-standard);
3341
3339
  }
3342
3340
  [dir="ltr"] .ck.ck-find-and-replace-form .ck-find-and-replace-form__inputs > .ck-labeled-field-replace {
3343
3341
  margin-left: 0;
3344
- }
3342
+ }
3345
3343
  [dir="rtl"] .ck.ck-find-and-replace-form .ck-find-and-replace-form__inputs > .ck-labeled-field-replace {
3346
3344
  margin-right: 0;
3347
- }
3345
+ }
3348
3346
  /* Styles specific for actions area. */
3349
3347
  .ck.ck-find-and-replace-form .ck-find-and-replace-form__actions {
3350
3348
  flex-wrap: wrap;
@@ -3395,13 +3393,13 @@ of the component, floating–point numbers have been used which, for the default
3395
3393
  flex: 1 1 auto;
3396
3394
  }
3397
3395
 
3398
- [dir="ltr"] .ck.ck-find-and-replace-form.ck-find-and-replace-form__input > .ck-button:first-of-type {
3396
+ [dir="ltr"] .ck.ck-find-and-replace-form.ck-find-and-replace-form__input > .ck-button:first-of-type {
3399
3397
  margin-left: 0;
3400
- }
3398
+ }
3401
3399
 
3402
- [dir="rtl"] .ck.ck-find-and-replace-form.ck-find-and-replace-form__input > .ck-button:first-of-type {
3400
+ [dir="rtl"] .ck.ck-find-and-replace-form.ck-find-and-replace-form__input > .ck-button:first-of-type {
3403
3401
  margin-right: 0;
3404
- }
3402
+ }
3405
3403
 
3406
3404
  .ck.ck-find-and-replace-form.ck-find-and-replace-form__input > .ck-button:first-of-type .ck-button__label {
3407
3405
  width: 100%;
@@ -3422,13 +3420,13 @@ of the component, floating–point numbers have been used which, for the default
3422
3420
  flex: 1 1 auto;
3423
3421
  }
3424
3422
 
3425
- [dir="ltr"] .ck.ck-find-and-replace-form.ck-find-and-replace-form__actions > :not(.ck-labeled-field-view) > .ck-button:first-of-type {
3423
+ [dir="ltr"] .ck.ck-find-and-replace-form.ck-find-and-replace-form__actions > :not(.ck-labeled-field-view) > .ck-button:first-of-type {
3426
3424
  margin-left: 0;
3427
- }
3425
+ }
3428
3426
 
3429
- [dir="rtl"] .ck.ck-find-and-replace-form.ck-find-and-replace-form__actions > :not(.ck-labeled-field-view) > .ck-button:first-of-type {
3427
+ [dir="rtl"] .ck.ck-find-and-replace-form.ck-find-and-replace-form__actions > :not(.ck-labeled-field-view) > .ck-button:first-of-type {
3430
3428
  margin-right: 0;
3431
- }
3429
+ }
3432
3430
 
3433
3431
  .ck.ck-find-and-replace-form.ck-find-and-replace-form__actions > :not(.ck-labeled-field-view) > .ck-button .ck-button__label {
3434
3432
  width: 100%;
@@ -3507,16 +3505,16 @@ of the component, floating–point numbers have been used which, for the default
3507
3505
  .ck.ck-editor__editable.ck-blurred .ck-widget.raw-html-embed.ck-widget_selected::before {
3508
3506
  top: 0px;
3509
3507
  padding: var(--ck-spacing-tiny) var(--ck-spacing-small);
3510
- }
3508
+ }
3511
3509
  .ck.ck-editor__editable:not(.ck-blurred) .ck-widget.raw-html-embed.ck-widget_selected::before {
3512
3510
  top: 0;
3513
3511
  padding: var(--ck-spacing-tiny) var(--ck-spacing-small);
3514
3512
  background: var(--ck-color-focus-border);
3515
- }
3513
+ }
3516
3514
  .ck.ck-editor__editable .ck-widget.raw-html-embed:not(.ck-widget_selected):hover::before {
3517
3515
  top: 0px;
3518
3516
  padding: var(--ck-spacing-tiny) var(--ck-spacing-small);
3519
- }
3517
+ }
3520
3518
  /* ----- Emebed internals --------------------------------------------------------------------- */
3521
3519
  .ck-widget.raw-html-embed .raw-html-embed__content-wrapper {
3522
3520
  padding: var(--ck-spacing-standard);
@@ -3574,7 +3572,7 @@ of the component, floating–point numbers have been used which, for the default
3574
3572
  }
3575
3573
  .ck-editor__editable:not(.ck-read-only) .ck-widget.raw-html-embed .raw-html-embed__preview {
3576
3574
  pointer-events: none;
3577
- }
3575
+ }
3578
3576
  .ck-widget.raw-html-embed .raw-html-embed__preview-content {
3579
3577
  box-sizing: border-box;
3580
3578
  background-color: var(--ck-color-base-foreground);
@@ -3926,14 +3924,13 @@ of the component, floating–point numbers have been used which, for the default
3926
3924
  min-width: 0;
3927
3925
  max-width: 100%;
3928
3926
  }
3929
-
3930
- [dir="ltr"] .ck.ck-link-actions .ck-button:not(.ck-link-actions__preview) {
3927
+ [dir="ltr"] .ck.ck-link-actions .ck-button:not(.ck-link-actions__preview) {
3931
3928
  margin-left: 0;
3932
- }
3929
+ }
3933
3930
 
3934
- [dir="rtl"] .ck.ck-link-actions .ck-button:not(.ck-link-actions__preview) {
3931
+ [dir="rtl"] .ck.ck-link-actions .ck-button:not(.ck-link-actions__preview) {
3935
3932
  margin-left: 0;
3936
- }
3933
+ }
3937
3934
  }
3938
3935
  /*
3939
3936
  * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
@@ -4526,14 +4523,14 @@ of the component, floating–point numbers have been used which, for the default
4526
4523
  [dir="ltr"] .ck.ck-input-color > .ck.ck-dropdown > .ck.ck-button.ck-input-color__button {
4527
4524
  border-top-left-radius: 0;
4528
4525
  border-bottom-left-radius: 0;
4529
- }
4526
+ }
4530
4527
  [dir="ltr"] .ck.ck-input-color > .ck.ck-dropdown > .ck.ck-button.ck-input-color__button:not(:focus) {
4531
4528
  border-left: 1px solid transparent;
4532
4529
  }
4533
4530
  [dir="rtl"] .ck.ck-input-color > .ck.ck-dropdown > .ck.ck-button.ck-input-color__button {
4534
4531
  border-top-right-radius: 0;
4535
4532
  border-bottom-right-radius: 0;
4536
- }
4533
+ }
4537
4534
  [dir="rtl"] .ck.ck-input-color > .ck.ck-dropdown > .ck.ck-button.ck-input-color__button:not(:focus) {
4538
4535
  border-right: 1px solid transparent;
4539
4536
  }
@@ -4542,16 +4539,15 @@ of the component, floating–point numbers have been used which, for the default
4542
4539
  }
4543
4540
  .ck.ck-input-color > .ck.ck-dropdown > .ck.ck-button.ck-input-color__button > .ck.ck-input-color__button__preview {
4544
4541
  border-radius: 0;
4545
- }
4546
- .ck-rounded-corners .ck.ck-input-color > .ck.ck-dropdown > .ck.ck-button.ck-input-color__button > .ck.ck-input-color__button__preview, .ck.ck-input-color > .ck.ck-dropdown > .ck.ck-button.ck-input-color__button > .ck.ck-input-color__button__preview.ck-rounded-corners {
4547
- border-radius: var(--ck-border-radius);
4548
- }
4549
- .ck.ck-input-color > .ck.ck-dropdown > .ck.ck-button.ck-input-color__button > .ck.ck-input-color__button__preview {
4550
4542
 
4551
4543
  width: 20px;
4552
4544
  height: 20px;
4553
4545
  border: 1px solid var(--ck-color-input-border);
4554
4546
  }
4547
+ .ck-rounded-corners .ck.ck-input-color > .ck.ck-dropdown > .ck.ck-button.ck-input-color__button > .ck.ck-input-color__button__preview,
4548
+ .ck.ck-input-color > .ck.ck-dropdown > .ck.ck-button.ck-input-color__button > .ck.ck-input-color__button__preview.ck-rounded-corners {
4549
+ border-radius: var(--ck-border-radius);
4550
+ }
4555
4551
  .ck.ck-input-color > .ck.ck-dropdown > .ck.ck-button.ck-input-color__button > .ck.ck-input-color__button__preview > .ck.ck-input-color__button__preview__no-color-indicator {
4556
4552
  top: -30%;
4557
4553
  left: 50%;
@@ -4584,7 +4580,7 @@ of the component, floating–point numbers have been used which, for the default
4584
4580
  [dir="rtl"] .ck.ck-input-color .ck.ck-input-color__remove-color .ck.ck-icon {
4585
4581
  margin-right: 0;
4586
4582
  margin-left: var(--ck-spacing-standard);
4587
- }
4583
+ }
4588
4584
  /*
4589
4585
  * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
4590
4586
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
@@ -4624,10 +4620,10 @@ of the component, floating–point numbers have been used which, for the default
4624
4620
  }
4625
4621
  [dir="ltr"] .ck.ck-form__row > *:not(.ck-label) + * {
4626
4622
  margin-left: var(--ck-spacing-large);
4627
- }
4623
+ }
4628
4624
  [dir="rtl"] .ck.ck-form__row > *:not(.ck-label) + * {
4629
4625
  margin-right: var(--ck-spacing-large);
4630
- }
4626
+ }
4631
4627
  .ck.ck-form__row > .ck-label {
4632
4628
  width: 100%;
4633
4629
  min-width: 100%;
@@ -4764,11 +4760,6 @@ of the component, floating–point numbers have been used which, for the default
4764
4760
  }
4765
4761
  .ck.ck-table-form .ck.ck-labeled-field-view .ck.ck-labeled-field-view__status {
4766
4762
  border-radius: 0;
4767
- }
4768
- .ck-rounded-corners .ck.ck-table-form .ck.ck-labeled-field-view .ck.ck-labeled-field-view__status, .ck.ck-table-form .ck.ck-labeled-field-view .ck.ck-labeled-field-view__status.ck-rounded-corners {
4769
- border-radius: var(--ck-border-radius);
4770
- }
4771
- .ck.ck-table-form .ck.ck-labeled-field-view .ck.ck-labeled-field-view__status {
4772
4763
 
4773
4764
  background: var(--ck-color-base-error);
4774
4765
  color: var(--ck-color-base-background);
@@ -4777,9 +4768,12 @@ of the component, floating–point numbers have been used which, for the default
4777
4768
  text-align: center;
4778
4769
 
4779
4770
  animation: ck-table-form-labeled-view-status-appear .15s ease both;
4780
-
4781
- /* The arrow pointing towards the field. */
4782
4771
  }
4772
+ .ck-rounded-corners .ck.ck-table-form .ck.ck-labeled-field-view .ck.ck-labeled-field-view__status,
4773
+ .ck.ck-table-form .ck.ck-labeled-field-view .ck.ck-labeled-field-view__status.ck-rounded-corners {
4774
+ border-radius: var(--ck-border-radius);
4775
+ }
4776
+ /* The arrow pointing towards the field. */
4783
4777
  .ck.ck-table-form .ck.ck-labeled-field-view .ck.ck-labeled-field-view__status::after {
4784
4778
  border-color: transparent transparent var(--ck-color-base-error) transparent;
4785
4779
  border-width: 0 var(--ck-table-properties-error-arrow-size) var(--ck-table-properties-error-arrow-size) var(--ck-table-properties-error-arrow-size);