| 1234567891011121314151617181920212223242526272829303132 |
- /*
- * Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- @import "@ckeditor/ckeditor5-ui/theme/mixins/_rwd.css";
- .ck.ck-text-alternative-form {
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- & .ck-labeled-field-view {
- display: inline-block;
- }
- & .ck-label {
- display: none;
- }
- @mixin ck-media-phone {
- flex-wrap: wrap;
- & .ck-labeled-field-view {
- flex-basis: 100%;
- }
- & .ck-button {
- flex-basis: 50%;
- }
- }
- }
|