diff options
author | Kevin Suo <suokunlong@126.com> | 2021-05-30 20:39:31 +0800 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@libreoffice.org> | 2021-05-31 16:45:00 +0200 |
commit | 226a545d33667a0c9526593a5182ac0a849933e2 (patch) | |
tree | 82d799d420f02dd4c6fa18c26d2b238ac8298b03 /help3xsl/default.css | |
parent | 8ca38307bd81fbb37a664dd848fd1fda2c2b4181 (diff) |
tdf#142417: Improve convertfilters.py and add API Names column
This commit involves two parts:
1. Improved the convertfilters.py helper script to make sure
the generated convertfilters.xhp file is complete, accurate
and containing no duplicated entries, and also add codes
to also generate API Names column, as discussed in tdf#142417.
Importantly, the code is modified to generate fixed IDs,
rather than the previously random IDs or sequential IDs which
may make the PO translation strings to show fuzzy when the
file is re-generated.
2. This helper script is run and the convertfilters.xhp is
updated.
3. The default css is modified to better display the page.
There is no need to set overflow=auto for the DisplayArea,
otherwise the scrollbar goes to the bottom of that area which
is not visible. Also added a css class to display smaller
fonts for the table.
Change-Id: I8a5c73c9d6a0c0b44fc7db6cb67b140bfeb8b4be
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/116405
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
Diffstat (limited to 'help3xsl/default.css')
-rw-r--r-- | help3xsl/default.css | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/help3xsl/default.css b/help3xsl/default.css index ce1dd77f8b..29cb0f0105 100644 --- a/help3xsl/default.css +++ b/help3xsl/default.css @@ -196,8 +196,6 @@ table { background: #FEFEFE; box-shadow: rgba(0,0,0,0.08) 0 1px 5px 0; border-collapse: collapse; - margin-left: auto; - margin-right: auto; } table, th, td { border-top: 0; @@ -216,6 +214,10 @@ table, th, td { vertical-align:top; } +.table_font_small { + font-size: 0.98rem; +} + h1, h2, h3, |