| 1234567891011121314151617181920212223242526 |
- // Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
- // For licensing, see LICENSE.md or http://ckeditor.com/license
- .ck-editor__editable {
- .image {
- text-align: center;
- clear: both;
- &.image-style-side {
- float: right;
- margin-left: 0.8em;
- max-width: 50%;
- }
- }
- .image > img {
- // Prevent unnecessary margins caused by line-height (see #44).
- display: block;
- // Center the image if its width is smaller than content's width.
- margin: 0 auto;
- // Make sure the image never exceeds the size of the parent container (#67).
- max-width: 100%;
- }
- }
|