diff options
author | Moonchild <moonchild@palemoon.org> | 2020-12-15 10:30:06 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-12-15 13:39:19 +0000 |
commit | 62d550e22d915e6fd440bb42be5445df51b06893 (patch) | |
tree | 8331275a18bb2d74e8c18d369b0f70960378a4d6 /layout | |
parent | 2f60cae35eb50c368f9d7cbb1a19a0952d1f077d (diff) | |
download | UXP-62d550e22d915e6fd440bb42be5445df51b06893.tar UXP-62d550e22d915e6fd440bb42be5445df51b06893.tar.gz UXP-62d550e22d915e6fd440bb42be5445df51b06893.tar.lz UXP-62d550e22d915e6fd440bb42be5445df51b06893.tar.xz UXP-62d550e22d915e6fd440bb42be5445df51b06893.zip |
Issue #1696 - Propagate flex sizes to the table wrapper
This avoids overlapping of table styled elements inside flexboxes as used on
some websites.
Resolves #1696
Diffstat (limited to 'layout')
-rw-r--r-- | layout/style/res/ua.css | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/layout/style/res/ua.css b/layout/style/res/ua.css index 931b32eb8..ab51f67c5 100644 --- a/layout/style/res/ua.css +++ b/layout/style/res/ua.css @@ -46,6 +46,9 @@ backface-visibility: inherit; clip: inherit; /* When the table wrapper is a Flex/Grid item we need these: */ + flex-grow: inherit; + flex-shrink: inherit; + flex-basis: inherit; align-self: inherit; justify-self: inherit; grid-column-start: inherit; |