responsiveform.css 642 B

123456789101112131415161718192021222324252627282930
  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-vertical-form .ck-button::after {
  7. content: "";
  8. width: 0;
  9. position: absolute;
  10. right: -1px;
  11. top: var(--ck-spacing-small);
  12. bottom: var(--ck-spacing-small);
  13. z-index: 1;
  14. }
  15. .ck.ck-responsive-form {
  16. @mixin ck-media-phone {
  17. & .ck-button::after {
  18. content: "";
  19. width: 0;
  20. position: absolute;
  21. right: -1px;
  22. top: var(--ck-spacing-small);
  23. bottom: var(--ck-spacing-small);
  24. z-index: 1;
  25. }
  26. }
  27. }