UNPKG

555 BCSSView Raw
1/*
2 * Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
3 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4 */
5
6@import "@ckeditor/ckeditor5-ui/theme/mixins/_rwd.css";
7
8.ck.ck-text-alternative-form {
9 display: flex;
10 flex-direction: row;
11 flex-wrap: nowrap;
12
13 & .ck-labeled-field-view {
14 display: inline-block;
15 }
16
17 & .ck-label {
18 display: none;
19 }
20
21 @mixin ck-media-phone {
22 flex-wrap: wrap;
23
24 & .ck-labeled-field-view {
25 flex-basis: 100%;
26 }
27
28 & .ck-button {
29 flex-basis: 50%;
30 }
31 }
32}