linkform.css 500 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright (c) 2003-2019, 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/_rwd.css";
  6. .ck.ck-link-form {
  7. display: flex;
  8. flex-direction: row;
  9. flex-wrap: wrap;
  10. max-width: 500px;
  11. & .ck-label {
  12. display: none;
  13. }
  14. @mixin ck-media-phone {
  15. flex-wrap: wrap;
  16. & .ck-labeled-input {
  17. flex-basis: 100%;
  18. }
  19. & .ck-button {
  20. flex-basis: 50%;
  21. }
  22. }
  23. }