linkform.css 491 B

12345678910111213141516171819202122232425262728
  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-theme-lark/theme/mixins/_rwd.css";
  6. .ck.ck-link-form {
  7. display: flex;
  8. flex-direction: row;
  9. flex-wrap: nowrap;
  10. & .ck-label {
  11. display: none;
  12. }
  13. @mixin ck-media-phone {
  14. flex-wrap: wrap;
  15. & .ck-labeled-input {
  16. flex-basis: 100%;
  17. }
  18. & .ck-button {
  19. flex-basis: 50%;
  20. }
  21. }
  22. }