UNPKG

570 BCSSView Raw
1/*
2 * Copyright (c) 2003-2024, 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-media-form {
9 display: flex;
10 align-items: flex-start;
11 flex-direction: row;
12 flex-wrap: nowrap;
13
14 & .ck-labeled-field-view {
15 display: inline-block;
16 }
17
18 & .ck-label {
19 display: none;
20 }
21
22 @mixin ck-media-phone {
23 flex-wrap: wrap;
24
25 & .ck-labeled-field-view {
26 flex-basis: 100%;
27 }
28
29 & .ck-button {
30 flex-basis: 50%;
31 }
32 }
33}