Make WordPress Core

Ticket #59602: 59602.3.patch

File 59602.3.patch, 2.1 KB (added by sabernhardt, 22 months ago)

removes font size from table elements, updates selectors for figcaption styles, edits font-weight for table caption elements

  • src/wp-content/themes/twentyfifteen/css/editor-blocks.css

     
    414414
    415415/* Captions */
    416416
    417 [class^="wp-block-"] figcaption {
     417figure[class*="wp-block-"] > figcaption {
    418418        color: #707070;
    419419        font-family: "Noto Sans", sans-serif;
    420420        font-size: 12px;
     
    422422        padding: 0.5em 0;
    423423}
    424424
    425 .editor-block-list__block [class^="wp-block-"] figcaption {
     425.editor-styles-wrapper figure[class*="wp-block-"] > figcaption {
    426426        line-height: 1.5;
    427427}
    428428
    429429@media screen and (min-width: 46.25em) {
    430         [class^="wp-block-"] figcaption {
     430        figure[class*="wp-block-"] > figcaption {
    431431                font-size: 14px;
    432432        }
    433433}
    434434
    435435@media screen and (min-width: 55em) {
    436         [class^="wp-block-"] figcaption {
     436        figure[class*="wp-block-"] > figcaption {
    437437                font-size: 16px;
    438438        }
    439439}
    440440
    441441@media screen and (min-width: 59.6875em) {
    442         [class^="wp-block-"] figcaption {
     442        figure[class*="wp-block-"] > figcaption {
    443443                font-size: 12px;
    444444        }
    445445}
    446446
    447447@media screen and (min-width: 68.75em) {
    448         [class^="wp-block-"] figcaption {
     448        figure[class*="wp-block-"] > figcaption {
    449449                font-size: 14px;
    450450        }
    451451}
    452452
    453453@media screen and (min-width: 77.5em) {
    454         [class^="wp-block-"] figcaption {
     454        figure[class*="wp-block-"] > figcaption {
    455455                font-size: 16px;
    456456        }
    457457}
  • src/wp-content/themes/twentyfifteen/css/editor-style.css

     
    287287table caption {
    288288        border-width: 0 1px 1px 0;
    289289        font-family: "Noto Serif", serif;
    290         font-size: 17px;
    291290        font-weight: 700;
    292291        padding: 7px;
    293292        text-align: left;
     
    294293        vertical-align: baseline;
    295294}
    296295
     296table caption {
     297        font-weight: normal;
     298}
     299
    297300table td,
    298301.mce-item-table td {
    299302        border-width: 0 1px 1px 0;
    300303        font-family: "Noto Serif", serif;
    301         font-size: 17px;
    302304        padding: 7px;
    303305        vertical-align: baseline;
    304306}