| 12345678910111213141516171819202122 |
- /*
- * 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;
- }
- }
|