diff --git a/blocks.js b/blocks.js
index c67a8804d1ea5c..5365021ed5e88d 100644
--- a/blocks.js
+++ b/blocks.js
@@ -40,58 +40,181 @@ var config = {
'default': []
},
blockCategories: [
- { id: 'frequent', label: 'Frequently Used' },
- { id: 'media', label: 'Media' }
+ { id: 'common', label: 'Common' },
+ { id: 'media', label: 'Media' },
+ { id: 'embeds', label: 'Embeds' },
+ { id: 'other', label: 'Other' },
+ { id: 'layout', label: 'Layout' }
],
blocks: [
- {
- id: 'paragraph',
- label: 'Paragraph',
- icon: '',
- category: 'frequent'
- },
- {
- id: 'heading',
- label: 'Heading',
- icon: '',
- category: 'frequent'
- },
- {
- id: 'image',
- label: 'Image',
- icon: '',
- category: 'frequent'
- },
- {
- id: 'quote',
- label: 'Quote',
- icon: '',
- category: 'frequent'
- },
- {
- id: 'gallery',
- label: 'Gallery',
- icon: '',
- category: 'media'
- },
- {
- id: 'unordered-list',
- label: 'Unordered List',
- icon: '',
- category: 'frequent'
- },
- {
- id: 'ordered-list',
- label: 'Ordered List',
- icon: '',
- category: 'frequent'
- },
- {
- id: 'embed',
- label: 'Embed',
- icon: '',
- category: 'media'
- }
+ {
+ id: 'paragraph',
+ label: 'Paragraph',
+ icon: '',
+ category: 'common'
+ },
+ {
+ id: 'heading',
+ label: 'Heading',
+ icon: '',
+ category: 'common'
+ },
+ {
+ id: 'image',
+ label: 'Image',
+ icon: '',
+ category: 'common'
+ },
+ {
+ id: 'quote',
+ label: 'Quote',
+ icon: '',
+ category: 'common'
+ },
+ {
+ id: 'gallery',
+ label: 'Gallery',
+ icon: '',
+ category: 'media'
+ },
+ {
+ id: 'unordered-list',
+ label: 'Unordered List',
+ icon: '',
+ category: 'common'
+ },
+ {
+ id: 'ordered-list',
+ label: 'Ordered List',
+ icon: '',
+ category: 'common'
+ },
+ {
+ id: 'embed',
+ label: 'Embed',
+ icon: '',
+ category: 'embeds'
+ },
+ {
+ id: 'separator',
+ label: 'Separator',
+ icon: '',
+ category: 'common'
+ },
+ {
+ id: 'map',
+ label: 'Map',
+ icon: '',
+ category: 'embeds'
+ },
+ {
+ id: 'google-map',
+ label: 'Google Map',
+ icon: '',
+ category: 'other'
+ },
+ {
+ id: 'openstreet-map',
+ label: 'OpenStreet Map',
+ icon: '',
+ category: 'other'
+ },
+ {
+ id: 'tweet',
+ label: 'Tweet',
+ icon: '',
+ category: 'other'
+ },
+ {
+ id: 'video',
+ label: 'Video',
+ icon: '',
+ category: 'media'
+ },
+ {
+ id: 'youtube',
+ label: 'YouTube',
+ icon: '',
+ category: 'media'
+ },
+ {
+ id: 'vimeo',
+ label: 'Vimeo',
+ icon: '',
+ category: 'media'
+ },
+ {
+ id: 'audio',
+ label: 'Audio',
+ icon: '',
+ category: 'media'
+ },
+ {
+ id: 'form',
+ label: 'Form',
+ icon: '',
+ category: 'other'
+ },
+ {
+ id: 'survey',
+ label: 'Survey',
+ icon: '',
+ category: 'other'
+ },
+ {
+ id: 'toc',
+ label: 'Table of Contents',
+ icon: '',
+ category: 'layout'
+ },
+ {
+ id: 'wordpress-post',
+ label: 'WordPress Post',
+ icon: '',
+ category: 'other'
+ },
+ {
+ id: 'facebook-post',
+ label: 'Facebook Post',
+ icon: '',
+ category: 'other'
+ },
+ {
+ id: 'opengraph-link',
+ label: 'OpenGraph Link',
+ icon: '',
+ category: 'other'
+ },
+ {
+ id: 'playlist',
+ label: 'Playlist',
+ icon: '',
+ category: 'media'
+ },
+ {
+ id: 'spotify-playlist',
+ label: 'Spotify Playlist',
+ icon: '',
+ category: 'media'
+ },
+ {
+ id: 'poet',
+ label: 'Poet',
+ icon: '',
+ category: 'layout'
+ },
+ {
+ id: 'custom-field',
+ label: 'Custom Field',
+ icon: '',
+ category: 'layout'
+ },
+ {
+ id: 'gist',
+ label: 'Gist',
+ icon: '',
+ category: 'other'
+ }
]
};
diff --git a/style.css b/style.css
index ba214c76182099..5dcd07a6377722 100644
--- a/style.css
+++ b/style.css
@@ -461,6 +461,11 @@ img.is-selected {
fill: #191e23;
}
+.insert-block__block svg {
+ widows: 24px;
+ height: 24px;
+}
+
/*
* Text actions
*/