diff --git a/client/gutenberg/editor/main.jsx b/client/gutenberg/editor/main.jsx index 8519fcdeb1532..8f3644f6b350f 100644 --- a/client/gutenberg/editor/main.jsx +++ b/client/gutenberg/editor/main.jsx @@ -22,8 +22,8 @@ import { getHttpData } from 'state/data-layer/http-data'; import { getSiteSlug } from 'state/sites/selectors'; import { WithAPIMiddleware } from './api-middleware/utils'; import { translate } from 'i18n-calypso'; - -import './hooks'; +import 'tinymce/plugins/lists/plugin.js'; // Make list indent/outdent work +import './hooks'; // Needed for integrating Calypso's media library (and other hooks) class GutenbergEditor extends Component { componentDidMount() { diff --git a/client/gutenberg/editor/style.scss b/client/gutenberg/editor/style.scss index 1156834ad7f16..a1bda5e42dcfa 100644 --- a/client/gutenberg/editor/style.scss +++ b/client/gutenberg/editor/style.scss @@ -111,6 +111,12 @@ $gutenberg-theme-toggle: #11a0d2; z-index: 100000; /* Above WP toolbar. */ } } + + .editor-block-list__block { + ul ul, ol ol { + list-style-type: circle; + } + } } //needed for oembed iframes to appear