浏览代码

Docs: Left/right aligned images are styled by default.

Piotrek Koszuliński 8 年之前
父节点
当前提交
7371f27a43

+ 0 - 2
packages/ckeditor5-image/docs/_snippets/features/image-style-custom.js

@@ -5,8 +5,6 @@
 
 /* globals ClassicEditor, console, window, document */
 
-import './image-style-custom.scss';
-
 ClassicEditor
 	.create( document.querySelector( '#snippet-image-style-custom' ), {
 		image: {

+ 0 - 14
packages/ckeditor5-image/docs/_snippets/features/image-style-custom.scss

@@ -1,14 +0,0 @@
-// Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
-// For licensing, see LICENSE.md or http://ckeditor.com/license
-
-.image-style-align-left {
-    float: left;
-    width: 50%;
-    margin: 1em 1em 1em 0;
-}
-
-.image-style-align-right {
-    float: right;
-    width: 50%;
-    margin: 1em 0 1em 1em;
-}