@ckeditor/ckeditor5-theme-lark
Version:
A bright theme for CKEditor 5.
33 lines (26 loc) • 755 B
CSS
/*
* Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
*/
@import "@ckeditor/ckeditor5-ui/theme/mixins/_dir.css";
@import "@ckeditor/ckeditor5-ui/theme/mixins/_rwd.css";
.ck.ck-special-characters-navigation {
& > .ck-label {
max-width: 160px;
text-overflow: ellipsis;
overflow: hidden;
}
& > .ck-dropdown .ck-dropdown__panel {
/* There could be dozens of categories available. Use scroll to prevent a 10e6px dropdown. */
max-height: 250px;
overflow-y: auto;
overflow-x: hidden;
}
@mixin ck-media-phone {
max-width: 190px;
& > .ck-form__header__label {
text-overflow: ellipsis;
overflow: hidden;
}
}
}