
| Current Path : /var/www/html/sirius-pallets/web/core/modules/ckeditor5/css/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/sirius-pallets/web/core/modules/ckeditor5/css/editor.css |
/**
* @file
* Styles for the CKEditor 5 editor.
*/
/* Convert low opacity icons to full opacity. */
.ck-button:not(.ck-disabled) .ck-icon * {
opacity: 1 !important;
fill-opacity: 1 !important;
}
.ck-editor__main > :is(.ck-editor__editable, .ck-source-editing-area) {
/* Set the min-height equal to configuration value for the number of rows.
* The `--ck-min-height` value is set on the parent `.ck-editor` element by
* JavaScript. We add that there because the `.ck-editor__editable` element's
* inline styles are cleared on focus. */
min-height: var(--ck-min-height);
/* Set the max-height to not grow beyond the height of the viewport (minus
* any toolbars. */
max-height: calc(100vh - var(--drupal-displace-offset-top, 0px) - var(--drupal-displace-offset-bottom, 0px) - 20px);
}
/* Show the scrollbar on the source editing area. */
.ck-editor__main > .ck-source-editing-area textarea {
overflow: auto;
}
/* Enhance visibility of selected/active buttons on the toolbar. */
.ck-toolbar__items .ck.ck-button.ck-on {
border: 1px solid var(--ck-color-button-on-color);
}