textalternativeform.css 557 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-text-alternative-form {
  7. display: flex;
  8. flex-direction: row;
  9. flex-wrap: nowrap;
  10. & .ck-labeled-field-view {
  11. display: inline-block;
  12. }
  13. & .ck-label {
  14. display: none;
  15. }
  16. @mixin ck-media-phone {
  17. flex-wrap: wrap;
  18. & .ck-labeled-field-view {
  19. flex-basis: 100%;
  20. }
  21. & .ck-button {
  22. flex-basis: 50%;
  23. }
  24. }
  25. }