@ckeditor/ckeditor5-media-embed
Version:
Media embed feature for CKEditor 5.
40 lines (31 loc) • 640 B
CSS
/*
* Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
*/
@import "@ckeditor/ckeditor5-ui/theme/mixins/_rwd.css";
.ck.ck-media-form {
display: flex;
align-items: flex-start;
flex-direction: row;
flex-wrap: nowrap;
width: 400px;
& .ck-labeled-field-view {
display: inline-block;
width: 100%;
}
& .ck-label {
display: none;
}
& .ck-input {
width: 100%;
}
@mixin ck-media-phone {
flex-wrap: wrap;
& .ck-labeled-field-view {
flex-basis: 100%;
}
& .ck-button {
flex-basis: 50%;
}
}
}