From 226a545d33667a0c9526593a5182ac0a849933e2 Mon Sep 17 00:00:00 2001 From: Kevin Suo Date: Sun, 30 May 2021 20:39:31 +0800 Subject: 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 --- help3xsl/default.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'help3xsl') 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, -- cgit