specialcharacters.css 560 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. @import "@ckeditor/ckeditor5-ui/theme/mixins/_dir.css";
  6. .ck.ck-special-characters-navigation {
  7. & > .ck-label {
  8. max-width: 160px;
  9. text-overflow: ellipsis;
  10. overflow: hidden;
  11. }
  12. & > .ck-dropdown .ck-dropdown__panel {
  13. /* There could be dozens of categories available. Use scroll to prevent a 10e6px dropdown. */
  14. max-height: 250px;
  15. overflow-y: auto;
  16. overflow-x: hidden;
  17. }
  18. }