8
0

responsiveform.css 471 B

12345678910111213141516171819202122232425
  1. @import "@ckeditor/ckeditor5-ui/theme/mixins/_rwd.css";
  2. .ck-vertical-form .ck-button::after {
  3. content: "";
  4. width: 0;
  5. position: absolute;
  6. right: -1px;
  7. top: var(--ck-spacing-small);
  8. bottom: var(--ck-spacing-small);
  9. z-index: 1;
  10. }
  11. .ck.ck-responsive-form {
  12. @mixin ck-media-phone {
  13. & .ck-button::after {
  14. content: "";
  15. width: 0;
  16. position: absolute;
  17. right: -1px;
  18. top: var(--ck-spacing-small);
  19. bottom: var(--ck-spacing-small);
  20. z-index: 1;
  21. }
  22. }
  23. }