labeledfieldview.css 660 B

1234567891011121314151617181920212223
  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-labeled-field-view .ck-labeled-field-view__status {
  6. font-size: var(--ck-font-size-small);
  7. margin-top: var(--ck-spacing-small);
  8. /* Let the info wrap to the next line to avoid stretching the layout horizontally.
  9. The status could be very long. */
  10. white-space: normal;
  11. }
  12. .ck.ck-labeled-field-view .ck-labeled-field-view__status_error {
  13. color: var(--ck-color-base-error);
  14. }
  15. .ck.ck-labeled-field-view > .ck.ck-label {
  16. width: 100%;
  17. text-overflow: ellipsis;
  18. overflow: hidden;
  19. }