characterinfo.css 540 B

123456789101112131415161718192021222324
  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. .ck.ck-character-info {
  6. padding: var(--ck-spacing-small) var(--ck-spacing-large);
  7. border-top: 1px solid var(--ck-color-base-border);
  8. & > * {
  9. text-transform: uppercase;
  10. font-size: var(--ck-font-size-small);
  11. }
  12. & .ck-character-info__name {
  13. max-width: 280px;
  14. text-overflow: ellipsis;
  15. overflow: hidden;
  16. }
  17. & .ck-character-info__code {
  18. opacity: .6;
  19. }
  20. }