|
|
@@ -622,7 +622,7 @@ export default class CodeMirrorEditor extends AbstractEditor {
|
|
|
title="Bold"
|
|
|
onClick={this.createReplaceSelectionHandler('**', '**')}
|
|
|
>
|
|
|
- <img src="/images/icons/editor/bold.svg" alt="icon-bold" />
|
|
|
+ <img src="/images/icons/editor/bold.svg" alt="icon-bold" height="13" />
|
|
|
</Button>,
|
|
|
<Button
|
|
|
key="nav-item-italic"
|
|
|
@@ -630,7 +630,7 @@ export default class CodeMirrorEditor extends AbstractEditor {
|
|
|
title="Italic"
|
|
|
onClick={this.createReplaceSelectionHandler('*', '*')}
|
|
|
>
|
|
|
- <img src="/images/icons/editor/italic.svg" alt="icon-italic" />
|
|
|
+ <img src="/images/icons/editor/italic.svg" alt="icon-italic" height="13" />
|
|
|
</Button>,
|
|
|
<Button
|
|
|
key="nav-item-strikethrough"
|
|
|
@@ -638,7 +638,7 @@ export default class CodeMirrorEditor extends AbstractEditor {
|
|
|
title="Strikethrough"
|
|
|
onClick={this.createReplaceSelectionHandler('~~', '~~')}
|
|
|
>
|
|
|
- <img src="/images/icons/editor/strikethrough.svg" alt="icon-strikethrough" />
|
|
|
+ <img src="/images/icons/editor/strikethrough.svg" alt="icon-strikethrough" height="13" />
|
|
|
</Button>,
|
|
|
<Button
|
|
|
key="nav-item-header"
|
|
|
@@ -646,7 +646,7 @@ export default class CodeMirrorEditor extends AbstractEditor {
|
|
|
title="Heading"
|
|
|
onClick={this.makeHeaderHandler}
|
|
|
>
|
|
|
- <img src="/images/icons/editor/header.svg" alt="icon-header" />
|
|
|
+ <img src="/images/icons/editor/header.svg" alt="icon-header" height="13" />
|
|
|
</Button>,
|
|
|
<Button
|
|
|
key="nav-item-code"
|
|
|
@@ -654,7 +654,7 @@ export default class CodeMirrorEditor extends AbstractEditor {
|
|
|
title="Inline Code"
|
|
|
onClick={this.createReplaceSelectionHandler('`', '`')}
|
|
|
>
|
|
|
- <img src="/images/icons/editor/code.svg" alt="icon-code" />
|
|
|
+ <img src="/images/icons/editor/code.svg" alt="icon-code" height="13" />
|
|
|
</Button>,
|
|
|
<Button
|
|
|
key="nav-item-quote"
|
|
|
@@ -662,7 +662,7 @@ export default class CodeMirrorEditor extends AbstractEditor {
|
|
|
title="Quote"
|
|
|
onClick={this.createAddPrefixToEachLinesHandler('> ')}
|
|
|
>
|
|
|
- <img src="/images/icons/editor/quote.svg" alt="icon-quote" />
|
|
|
+ <img src="/images/icons/editor/quote.svg" alt="icon-quote" height="13" />
|
|
|
</Button>,
|
|
|
<Button
|
|
|
key="nav-item-ul"
|
|
|
@@ -670,7 +670,7 @@ export default class CodeMirrorEditor extends AbstractEditor {
|
|
|
title="List"
|
|
|
onClick={this.createAddPrefixToEachLinesHandler('- ')}
|
|
|
>
|
|
|
- <img src="/images/icons/editor/list-ul.svg" alt="icon-list-ul" />
|
|
|
+ <img src="/images/icons/editor/list-ul.svg" alt="icon-list-ul" height="13" />
|
|
|
</Button>,
|
|
|
<Button
|
|
|
key="nav-item-ol"
|
|
|
@@ -678,7 +678,7 @@ export default class CodeMirrorEditor extends AbstractEditor {
|
|
|
title="Numbered List"
|
|
|
onClick={this.createAddPrefixToEachLinesHandler('1. ')}
|
|
|
>
|
|
|
- <img src="/images/icons/editor/list-ol.svg" alt="icon-list-ol" />
|
|
|
+ <img src="/images/icons/editor/list-ol.svg" alt="icon-list-ol" height="13" />
|
|
|
</Button>,
|
|
|
<Button
|
|
|
key="nav-item-checkbox"
|
|
|
@@ -686,7 +686,7 @@ export default class CodeMirrorEditor extends AbstractEditor {
|
|
|
title="Check List"
|
|
|
onClick={this.createAddPrefixToEachLinesHandler('- [ ] ')}
|
|
|
>
|
|
|
- <img src="/images/icons/editor/check.svg" alt="icon-check" />
|
|
|
+ <img src="/images/icons/editor/check.svg" alt="icon-check" height="13" />
|
|
|
</Button>,
|
|
|
<Button
|
|
|
key="nav-item-link"
|
|
|
@@ -694,7 +694,7 @@ export default class CodeMirrorEditor extends AbstractEditor {
|
|
|
title="Link"
|
|
|
onClick={this.createReplaceSelectionHandler('[', ']()')}
|
|
|
>
|
|
|
- <img src="/images/icons/editor/link.svg" alt="icon-link" />
|
|
|
+ <img src="/images/icons/editor/link.svg" alt="icon-link" height="13" />
|
|
|
</Button>,
|
|
|
<Button
|
|
|
key="nav-item-image"
|
|
|
@@ -702,7 +702,7 @@ export default class CodeMirrorEditor extends AbstractEditor {
|
|
|
title="Image"
|
|
|
onClick={this.createReplaceSelectionHandler('![', ']()')}
|
|
|
>
|
|
|
- <img src="/images/icons/editor/picture.svg" alt="icon-picture" />
|
|
|
+ <img src="/images/icons/editor/picture.svg" alt="icon-picture" height="13" />
|
|
|
</Button>,
|
|
|
<Button
|
|
|
key="nav-item-table"
|
|
|
@@ -710,7 +710,7 @@ export default class CodeMirrorEditor extends AbstractEditor {
|
|
|
title="Table"
|
|
|
onClick={this.showHandsonTableHandler}
|
|
|
>
|
|
|
- <img src="/images/icons/editor/table.svg" alt="icon-table" />
|
|
|
+ <img src="/images/icons/editor/table.svg" alt="icon-table" height="13" />
|
|
|
</Button>,
|
|
|
];
|
|
|
}
|