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 { |
2839 | 2839 | |
2840 | 2840 | /* Block Font Sizes -------------------------- */ |
2841 | 2841 | |
2842 | | .entry-content .has-small-font-size { |
| 2842 | .entry-content .has-small-font-size, |
| 2843 | .entry-content .has-small-font-size table { |
2843 | 2844 | font-size: 0.842em; |
2844 | 2845 | } |
2845 | 2846 | |
2846 | 2847 | .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 { |
2848 | 2851 | font-size: 1em; |
2849 | 2852 | } |
2850 | 2853 | |
2851 | | .entry-content .has-medium-font-size { |
| 2854 | .entry-content .has-medium-font-size, |
| 2855 | .entry-content .has-medium-font-size table { |
2852 | 2856 | font-size: 1.1em; |
2853 | 2857 | line-height: 1.45; |
2854 | 2858 | } |
2855 | 2859 | |
2856 | | .entry-content .has-large-font-size { |
| 2860 | .entry-content .has-large-font-size, |
| 2861 | .entry-content .has-large-font-size table { |
2857 | 2862 | font-size: 1.25em; |
2858 | 2863 | line-height: 1.4; |
2859 | 2864 | } |
2860 | 2865 | |
2861 | | .entry-content .has-larger-font-size { |
| 2866 | .entry-content .has-larger-font-size, |
| 2867 | .entry-content .has-larger-font-size table { |
2862 | 2868 | font-size: 1.5em; |
2863 | 2869 | line-height: 1.3; |
2864 | 2870 | } |
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 { |
2859 | 2859 | |
2860 | 2860 | /* Block Font Sizes -------------------------- */ |
2861 | 2861 | |
2862 | | .entry-content .has-small-font-size { |
| 2862 | .entry-content .has-small-font-size, |
| 2863 | .entry-content .has-small-font-size table { |
2863 | 2864 | font-size: 0.842em; |
2864 | 2865 | } |
2865 | 2866 | |
2866 | 2867 | .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 { |
2868 | 2871 | font-size: 1em; |
2869 | 2872 | } |
2870 | 2873 | |
2871 | | .entry-content .has-medium-font-size { |
| 2874 | .entry-content .has-medium-font-size, |
| 2875 | .entry-content .has-medium-font-size table { |
2872 | 2876 | font-size: 1.1em; |
2873 | 2877 | line-height: 1.45; |
2874 | 2878 | } |
2875 | 2879 | |
2876 | | .entry-content .has-large-font-size { |
| 2880 | .entry-content .has-large-font-size, |
| 2881 | .entry-content .has-large-font-size table { |
2877 | 2882 | font-size: 1.25em; |
2878 | 2883 | line-height: 1.4; |
2879 | 2884 | } |
2880 | 2885 | |
2881 | | .entry-content .has-larger-font-size { |
| 2886 | .entry-content .has-larger-font-size, |
| 2887 | .entry-content .has-larger-font-size table { |
2882 | 2888 | font-size: 1.5em; |
2883 | 2889 | line-height: 1.3; |
2884 | 2890 | } |