From 3f13eca1d4b107d0916e06532ac05ad07f60ac64 Mon Sep 17 00:00:00 2001 From: zatalyz Date: Sat, 11 Jul 2020 21:52:24 +0200 Subject: [PATCH] Close #8 : - Add margin between line in table with list (pagelist) ; - remove margin left/right in same table for mobile screen ; - change font size for describe in pagelist table. --- css/misc.less | 5 +++++ css/mobile.less | 4 ++++ css/plugin.less | 21 +++++++++++++++++++++ 3 files changed, 30 insertions(+) diff --git a/css/misc.less b/css/misc.less index 922c7b7..38d328a 100644 --- a/css/misc.less +++ b/css/misc.less @@ -147,6 +147,11 @@ th { background-color: @ini_border; } +/* More space between line in table with list */ +div.dokuwiki table.ul th, div.dokuwiki table.ul td { + padding: 0 0.5em 1em 0; +} + /*____________ code ____________*/ /* fix if background-color hides underlining */ diff --git a/css/mobile.less b/css/mobile.less index 230cf4e..f063c0d 100644 --- a/css/mobile.less +++ b/css/mobile.less @@ -222,6 +222,10 @@ text-align: right; } +tbody tr td ul, tbody tr td ul li { + margin: 0 !important; +} + /* _edit */ .dokuwiki div.section_highlight { margin: 0; diff --git a/css/plugin.less b/css/plugin.less index 4c1e612..d3c4be6 100644 --- a/css/plugin.less +++ b/css/plugin.less @@ -40,3 +40,24 @@ #config__manager fieldset { background-color: @ini_background; } + + +/*____________ Pagelist ____________*/ + +div.dokuwiki th.page, +div.dokuwiki th.date, +div.dokuwiki th.user, +div.dokuwiki th.desc, +div.dokuwiki th.comments, +div.dokuwiki th.linkbacks, +div.dokuwiki th.tags, +div.dokuwiki th.diff, +div.dokuwiki td.date, +div.dokuwiki td.user, +div.dokuwiki td.desc, +div.dokuwiki td.comments, +div.dokuwiki td.linkbacks, +div.dokuwiki td.tags, +div.dokuwiki td.diff { + font-size: 95% !important ; +}