labeledinput.css 535 B

1234567891011121314151617
  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-input .ck-labeled-input__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-input .ck-labeled-input__status_error {
  13. color: var(--ck-color-base-error);
  14. }