8
0

linkactions.css 599 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. @import "@ckeditor/ckeditor5-ui/theme/mixins/_rwd.css";
  6. .ck.ck-link-actions {
  7. display: flex;
  8. flex-direction: row;
  9. flex-wrap: nowrap;
  10. & .ck-link-actions__preview {
  11. display: inline-block;
  12. & .ck-button__label {
  13. overflow: hidden;
  14. }
  15. }
  16. @mixin ck-media-phone {
  17. flex-wrap: wrap;
  18. & .ck-link-actions__preview {
  19. flex-basis: 100%;
  20. }
  21. & .ck-button:not(.ck-link-actions__preview) {
  22. flex-basis: 50%;
  23. }
  24. }
  25. }