form.css 578 B

1234567891011121314151617181920212223242526272829303132
  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-form {
  6. padding: 0 0 var(--ck-spacing-large);
  7. &:focus {
  8. /* See: https://github.com/ckeditor/ckeditor5/issues/4773 */
  9. outline: none;
  10. }
  11. & .ck.ck-input-text {
  12. min-width: 100%;
  13. width: 0;
  14. }
  15. & .ck.ck-dropdown {
  16. min-width: 100%;
  17. & .ck-dropdown__button {
  18. &:not(:focus) {
  19. border: 1px solid var(--ck-color-base-border);
  20. }
  21. & .ck-button__label {
  22. width: 100%;
  23. }
  24. }
  25. }
  26. }