Make WordPress Core

Ticket #58489: 58489.diff

File 58489.diff, 2.8 KB (added by sarath.ar, 22 months ago)

Fix for table font size not changing issue

  • src/wp-content/themes/twentytwenty/style-rtl.css

    From 059f662bc357e1749836d6fc5b59154c1a54f38c Mon Sep 17 00:00:00 2001
    From: Sarath A R <sarath@awsm.in>
    Date: Thu, 8 Jun 2023 17:14:52 +0530
    Subject: [PATCH] Fix for #58489, table font size issue
    
    ---
     src/wp-content/themes/twentytwenty/style-rtl.css | 16 +++++++++++-----
     src/wp-content/themes/twentytwenty/style.css     | 16 +++++++++++-----
     2 files changed, 22 insertions(+), 10 deletions(-)
    
    diff --git a/src/wp-content/themes/twentytwenty/style-rtl.css b/src/wp-content/themes/twentytwenty/style-rtl.css
    index e9200c45fe..7ba2ccc683 100644
    a b h2.entry-title { 
    28392839
    28402840/* Block Font Sizes -------------------------- */
    28412841
    2842 .entry-content .has-small-font-size {
     2842.entry-content .has-small-font-size,
     2843.entry-content .has-small-font-size table  {
    28432844        font-size: 0.842em;
    28442845}
    28452846
    28462847.entry-content .has-normal-font-size,
    2847 .entry-content .has-regular-font-size {
     2848.entry-content .has-regular-font-size,
     2849.entry-content .has-normal-font-size table,
     2850.entry-content .has-regular-font-size table  {
    28482851        font-size: 1em;
    28492852}
    28502853
    2851 .entry-content .has-medium-font-size {
     2854.entry-content .has-medium-font-size,
     2855.entry-content .has-medium-font-size table {
    28522856        font-size: 1.1em;
    28532857        line-height: 1.45;
    28542858}
    28552859
    2856 .entry-content .has-large-font-size {
     2860.entry-content .has-large-font-size,
     2861.entry-content .has-large-font-size table {
    28572862        font-size: 1.25em;
    28582863        line-height: 1.4;
    28592864}
    28602865
    2861 .entry-content .has-larger-font-size {
     2866.entry-content .has-larger-font-size,
     2867.entry-content .has-larger-font-size table {
    28622868        font-size: 1.5em;
    28632869        line-height: 1.3;
    28642870}
  • src/wp-content/themes/twentytwenty/style.css

    diff --git a/src/wp-content/themes/twentytwenty/style.css b/src/wp-content/themes/twentytwenty/style.css
    index bd85ce4afe..7ebe6d1ea3 100644
    a b h2.entry-title { 
    28592859
    28602860/* Block Font Sizes -------------------------- */
    28612861
    2862 .entry-content .has-small-font-size {
     2862.entry-content .has-small-font-size,
     2863.entry-content .has-small-font-size table  {
    28632864        font-size: 0.842em;
    28642865}
    28652866
    28662867.entry-content .has-normal-font-size,
    2867 .entry-content .has-regular-font-size {
     2868.entry-content .has-regular-font-size,
     2869.entry-content .has-normal-font-size table,
     2870.entry-content .has-regular-font-size table  {
    28682871        font-size: 1em;
    28692872}
    28702873
    2871 .entry-content .has-medium-font-size {
     2874.entry-content .has-medium-font-size,
     2875.entry-content .has-medium-font-size table {
    28722876        font-size: 1.1em;
    28732877        line-height: 1.45;
    28742878}
    28752879
    2876 .entry-content .has-large-font-size {
     2880.entry-content .has-large-font-size,
     2881.entry-content .has-large-font-size table {
    28772882        font-size: 1.25em;
    28782883        line-height: 1.4;
    28792884}
    28802885
    2881 .entry-content .has-larger-font-size {
     2886.entry-content .has-larger-font-size,
     2887.entry-content .has-larger-font-size table {
    28822888        font-size: 1.5em;
    28832889        line-height: 1.3;
    28842890}