Ticket #45239: 45239.patch
File 45239.patch, 2.6 KB (added by , 6 years ago) |
---|
-
src/wp-content/themes/twentyeleven/blocks.css
130 130 width: 100%; 131 131 } 132 132 133 /* Cover Image*/133 /* Cover */ 134 134 135 .wp-block-cover-image.aligncenter { 135 .wp-block-cover-image.aligncenter, 136 .wp-block-cover.aligncenter { 136 137 clear: both; 137 138 display: flex; 138 139 } 139 140 140 .wp-block-cover-image.alignleft { 141 .wp-block-cover-image.alignleft, 142 .wp-block-cover.alignleft { 141 143 margin-right: 1.625em; 142 144 } 143 145 144 .wp-block-cover-image.alignright { 146 .wp-block-cover-image.alignright, 147 .wp-block-cover.alignright { 145 148 margin-left: 1.625em; 146 149 } 147 150 … … 260 263 max-width: 100%; 261 264 } 262 265 266 /* Media & Text */ 267 268 .wp-block-media-text { 269 margin-bottom: 1.625em; 270 } 271 263 272 /*-------------------------------------------------------------- 264 273 5.0 Blocks - Widgets 265 274 --------------------------------------------------------------*/ 266 275 276 /* Archives, Categories & Latest Posts */ 277 278 .wp-block-archives.aligncenter, 279 .wp-block-categories.aligncenter, 280 .wp-block-latest-posts.aligncenter { 281 margin-left: 2.5em; 282 text-align: center; 283 } 284 285 .rtl .wp-block-archives.aligncenter, 286 .rtl .wp-block-categories.aligncenter, 287 .rtl .wp-block-latest-posts.aligncenter { 288 margin-left: 0; 289 margin-right: 2.5em; 290 } 291 267 292 /* Latest Comments */ 268 293 269 294 .wp-block-latest-comments { -
src/wp-content/themes/twentyeleven/editor-blocks.css
72 72 73 73 /* Main column width */ 74 74 75 body.gutenberg-editor-page .edit-post-visual-editor .editor-post-title__block, 76 body.gutenberg-editor-page .edit-post-visual-editor .editor-default-block-appender, 77 body.gutenberg-editor-page .edit-post-visual-editor .editor-block-list__block { 78 max-width: 614px; 75 .editor-styles-wrapper { 76 max-width: 100% !important; /* Override where editor-style.css is affecting this. */ 79 77 } 80 78 79 .wp-block { 80 max-width: 614px; /* 584px + 30px to account for padding */ 81 } 82 81 83 /* Link styles */ 82 84 83 85 .edit-post-visual-editor a, … … 288 290 font-size: 16px; 289 291 } 290 292 293 /* Cover */ 291 294 292 /* Cover Image */ 293 294 .edit-post-visual-editor .editor-block-list__block .wp-block-cover-image p.wp-block-cover-image-text { 295 .edit-post-visual-editor .editor-block-list__block .wp-block-cover-image p.wp-block-cover-image-text, 296 .edit-post-visual-editor .editor-block-list__block .wp-block-cover p.wp-block-cover-text { 295 297 font-size: 30px; 296 298 line-height: 37.5px; 297 299 }