diff options
| author | Greg Roach <greg@subaqua.co.uk> | 2023-02-19 19:11:10 +0000 |
|---|---|---|
| committer | Greg Roach <greg@subaqua.co.uk> | 2023-02-19 19:11:10 +0000 |
| commit | 2735509aceccddea468f8b6605f36366806a0b4d (patch) | |
| tree | cbc936683019a9ab754d6cdb7a318139fea17b19 /resources/css | |
| parent | 239e9700658bd9cab93c096c64889208c7715078 (diff) | |
| download | webtrees-2735509aceccddea468f8b6605f36366806a0b4d.tar.gz webtrees-2735509aceccddea468f8b6605f36366806a0b4d.tar.bz2 webtrees-2735509aceccddea468f8b6605f36366806a0b4d.zip | |
Fix: #4751 - markdown tables should not inherit widths from parent table
Diffstat (limited to 'resources/css')
| -rwxr-xr-x | resources/css/fab.css | 3 | ||||
| -rwxr-xr-x | resources/css/minimal.css | 3 | ||||
| -rwxr-xr-x | resources/css/webtrees.css | 3 | ||||
| -rwxr-xr-x | resources/css/xenea.css | 3 |
4 files changed, 12 insertions, 0 deletions
diff --git a/resources/css/fab.css b/resources/css/fab.css index 8a3407b762..a4a3aaa1ba 100755 --- a/resources/css/fab.css +++ b/resources/css/fab.css @@ -452,6 +452,9 @@ div.fact_SHARED_NOTE { border-radius: 4px; text-align: center; font-weight: normal; +} + +.wt-facts-table > tbody > tr > th { min-width: 20%; } diff --git a/resources/css/minimal.css b/resources/css/minimal.css index fd1762e6b1..7bea8770fa 100755 --- a/resources/css/minimal.css +++ b/resources/css/minimal.css @@ -412,6 +412,9 @@ table { .wt-facts-table th { border: 1px solid #000; font-weight: normal; +} + +.wt-facts-table > tbody > tr > th { min-width: 20%; } diff --git a/resources/css/webtrees.css b/resources/css/webtrees.css index 0bf5df9019..b67122ff29 100755 --- a/resources/css/webtrees.css +++ b/resources/css/webtrees.css @@ -644,6 +644,9 @@ div.fact_SHARED_NOTE { border: solid #81a9cb 1px; text-align: center; font-weight: normal; +} + +.wt-facts-table > tbody > tr > th { min-width: 20%; } diff --git a/resources/css/xenea.css b/resources/css/xenea.css index fbe5169516..59e75163c4 100755 --- a/resources/css/xenea.css +++ b/resources/css/xenea.css @@ -636,6 +636,9 @@ div.fact_SHARED_NOTE { color: #006; text-align: center; font-weight: normal; +} + +.wt-facts-table > tbody > tr > th { min-width: 20%; } |
