@swnat/ckeditor-custom-build
Version:
The development environment of CKEditor 5 – the best browser-based rich text editor.
23 lines (18 loc) • 582 B
CSS
/*
* Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
@import "@ckeditor/ckeditor5-ui/theme/mixins/_dir.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;
}
}