Changeset 54340
- Timestamp:
- 09/27/2022 09:53:02 PM (2 years ago)
- Location:
- trunk/src/wp-content/themes/twentyeleven
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/blocks.css
r44381 r54340 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; -
trunk/src/wp-content/themes/twentyeleven/editor-blocks.css
r50358 r54340 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; … … 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'; … … 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; … … 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; … … 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; 366 } 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; 361 375 } 362 376
Note: See TracChangeset
for help on using the changeset viewer.