@@ -15,7 +15,7 @@ ClassicEditor
plugins: [
ArticlePluginSet
],
- toolbar: [ 'headings', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ]
+ toolbar: [ 'headings', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ]
} )
.then( editor => {
window.editor = editor;
@@ -3,7 +3,11 @@
* For licensing, see LICENSE.md.
*/
-blockquote {
+.ck-content blockquote {
/* See #12 */
overflow: hidden;
+ padding-left: 1.5em;
+ margin-left: 0;
+ font-style: italic;
+ border-left: solid 5px hsl(0, 0%, 80%);
}