]> git.pld-linux.org Git - packages/dokuwiki-plugin-data.git/blob - separator-style.patch
Re-order LEFT JOIN pages before LEFT JOIN rpm
[packages/dokuwiki-plugin-data.git] / separator-style.patch
1 add style to list separator, so one could write to userstyle.css:
2
3 table.dataplugin_table span.sep {
4     display: block;
5     font-size: 0px;
6 }
7
8 and have list items listed below each other
9
10 --- dokuwiki-plugin-data-20160311/helper.php~   2016-07-01 14:27:21.000000000 +0300
11 +++ dokuwiki-plugin-data-20160311/helper.php    2016-11-22 23:05:37.213943088 +0200
12 @@ -360,7 +360,7 @@
13                      }
14              }
15          }
16 -        return join(', ', $outs);
17 +        return join('<span class="sep">, </span>',$outs);
18      }
19  
20      /**
This page took 0.030471 seconds and 3 git commands to generate.