Ticket #56462: 56462.2.patch
| File 56462.2.patch, 2.5 KB (added by , 3 years ago) |
|---|
-
src/wp-content/themes/twentyeleven/blocks.css
219 219 text-transform: uppercase; 220 220 } 221 221 222 .rtl .wp-block-table th { 223 padding: 6px 0 6px 10px; 224 } 225 226 .wp-block-table .has-text-color th { 227 color: currentColor; 228 } 229 222 230 .wp-block-table td { 223 231 border: 0; 224 232 border-top: 1px solid #ddd; -
src/wp-content/themes/twentyeleven/editor-blocks.css
162 162 163 163 /* Captions */ 164 164 165 [class^="wp-block-"] figcaption { 165 [class^="wp-block-"] figcaption, 166 [class*=" wp-block-"] figcaption { 166 167 font-family: Georgia, serif; 167 168 font-size: 12px; 168 169 } 169 170 170 [class^="wp-block-"]:not(.wp-block-gallery) figcaption { 171 [class^="wp-block-"]:not(.wp-block-gallery) figcaption, 172 [class*=" wp-block-"]:not(.wp-block-gallery) figcaption { 171 173 color: #666; 172 174 margin-bottom: 1.625em; 173 175 max-width: 96%; … … 177 179 text-align: left; 178 180 } 179 181 180 [class^="wp-block-"]:not(.wp-block-gallery) figcaption:before { 182 [class^="wp-block-"]:not(.wp-block-gallery) figcaption:before, 183 [class*=" wp-block-"]:not(.wp-block-gallery) figcaption:before { 181 184 color: #666; 182 185 content: '\2014'; 183 186 font-size: 14px; … … 189 192 top: 0; 190 193 } 191 194 192 .rtl [class^="wp-block-"]:not(.wp-block-gallery) figcaption { 195 .rtl [class^="wp-block-"]:not(.wp-block-gallery) figcaption, 196 .rtl [class*=" wp-block-"]:not(.wp-block-gallery) figcaption { 193 197 padding-left: 0; 194 198 padding-right: 40px; 195 199 text-align: right; 196 200 } 197 201 198 .rtl [class^="wp-block-"]:not(.wp-block-gallery) figcaption:before { 202 .rtl [class^="wp-block-"]:not(.wp-block-gallery) figcaption:before, 203 .rtl [class*=" wp-block-"]:not(.wp-block-gallery) figcaption:before { 199 204 left: 0; 200 205 margin-left: 5px; 201 206 margin-right: 0; … … 355 360 356 361 /* Table */ 357 362 358 .editor- block-list__block.wp-block-table th,359 .editor- block-list__block.wp-block-table td {360 padding: 0;363 .editor-styles-wrapper .wp-block-table th, 364 .editor-styles-wrapper .wp-block-table td { 365 padding: 6px 10px 6px 0; 361 366 } 362 367 368 .rtl .editor-styles-wrapper .wp-block-table th, 369 .rtl .editor-styles-wrapper .wp-block-table td { 370 padding: 6px 0 6px 10px; 371 } 372 373 .wp-block-table .has-text-color th { 374 color: currentColor; 375 } 376 363 377 .wp-block-table__cell-content { 364 378 padding: 6px; 365 379 }