-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9197 from ckeditor/i/9196-caption-icon
Feature (core): Created the universal caption icon. Closes #9196. Docs (ckeditor5): Aligned the SVG icons section of the Development environment guide to the latest clean-up-svg-icons behavior (see #9196).
- Loading branch information
Showing
7 changed files
with
40 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/** | ||
* @license Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. | ||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license | ||
*/ | ||
|
||
/* eslint-env node */ | ||
|
||
const { extendDefaultPlugins } = require( 'svgo' ); | ||
|
||
module.exports = { | ||
plugins: extendDefaultPlugins( [ | ||
{ | ||
name: 'removeViewBox', | ||
active: false | ||
}, | ||
{ name: 'collapseGroups' }, | ||
{ name: 'removeDimensions' }, | ||
{ | ||
name: 'removeAttrs', | ||
params: { | ||
attrs: '(fill|stroke|fill-rule)' | ||
} | ||
}, | ||
{ | ||
name: 'convertPathData', | ||
params: { | ||
noSpaceAfterFlags: false | ||
} | ||
}, | ||
{ name: 'removeTitle' }, | ||
{ name: 'removeComments' }, | ||
{ name: 'removeMetadata' } | ||
] ) | ||
}; |
This file was deleted.
Oops, something went wrong.