- 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.
This commit is contained in:
zatalyz 2020-07-11 21:52:24 +02:00
parent 6400aabdb6
commit 3f13eca1d4
3 changed files with 30 additions and 0 deletions

View file

@ -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 */

View file

@ -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;

View file

@ -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 ;
}