diff options
author | Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> | 2022-04-18 12:41:48 +0300 |
---|---|---|
committer | Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> | 2022-04-19 14:51:33 +0200 |
commit | 5bab8a2d2530d7487064a2560c440269018a56b9 (patch) | |
tree | d91363751a754721c332203218ba6afed648ac03 /source/text | |
parent | 26cd9a5e8be28097e59188bcdf6bcaa9c75be4e4 (diff) |
tdf#148621 Make ScriptForge service tables mobile-friendly
- Introduce <tablehead> element
- While considering text-align, I noticed we do not take RTL languages
into account. A CSS rule 'html[dir=ltr] th' was added, which does
nothing at the moment. We should look into directionality.
Change-Id: Ib59aa0c508529c0beaa35542d96bd5cc1aa4db29
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/133114
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
Diffstat (limited to 'source/text')
-rw-r--r-- | source/text/sbasic/shared/03/lib_ScriptForge.xhp | 28 |
1 files changed, 12 insertions, 16 deletions
diff --git a/source/text/sbasic/shared/03/lib_ScriptForge.xhp b/source/text/sbasic/shared/03/lib_ScriptForge.xhp index 3dccd6a3c4..8c1dee32a1 100644 --- a/source/text/sbasic/shared/03/lib_ScriptForge.xhp +++ b/source/text/sbasic/shared/03/lib_ScriptForge.xhp @@ -51,21 +51,17 @@ </pycode> <h2 id="hd_id851613836643580">Services provided by the ScriptForge library</h2> - <table id="tab_id311613838858931"> - <tablerow> - <tablecell> - <paragraph id="par_id131613838858931" role="tablehead">Category</paragraph> - </tablecell> - <tablecell> - <paragraph id="par_id441613838858931" role="tablehead">Services</paragraph> - </tablecell> - <tablecell> - <paragraph id="par_id441613839128931" localize="false" role="tablehead"></paragraph> - </tablecell> - <tablecell> - <paragraph id="par_id441613839128041" localize="false" role="tablehead"></paragraph> - </tablecell> - </tablerow> + <table id="tab_id311613838858931" class="sf_table"> + <tablehead> + <tablerow> + <tablecell> + <paragraph id="par_id131613838858931" role="tablehead">Category</paragraph> + </tablecell> + <tablecell colspan="3"> + <paragraph id="par_id441613838858931" role="tablehead">Services</paragraph> + </tablecell> + </tablerow> + </tablehead> <tablerow> <tablecell> <paragraph id="par_id851613847558931" role="tablecontent">%PRODUCTNAME Basic</paragraph> @@ -241,4 +237,4 @@ <warning id="par_id851506659675843">All <literal>ScriptForge</literal> Basic routines or identifiers that are prefixed with an underscore character "_" are reserved for internal use. They are not meant be used in Basic macros or Python scripts.</warning> </section> </body> -</helpdocument>
\ No newline at end of file +</helpdocument> |