| 123456789101112131415161718192021 |
- /*
- * Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- .ck-content .media {
- /* Don't allow floated content overlap the media.
- https://github.com/ckeditor/ckeditor5-media-embed/issues/53 */
- clear: both;
- /* Make sure there is some space between the content and the media. */
- margin: 1em 0;
- /* Make sure media is not overriden with Bootstrap default `flex` value.
- See: https://github.com/ckeditor/ckeditor5/issues/1373. */
- display: block;
- /* Give the media some minimal width in the content to prevent them
- from being "squashed" in tight spaces, e.g. in table cells (#44) */
- min-width: 15em;
- }
|