aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--detail.php6
-rw-r--r--layout/style.css9
2 files changed, 12 insertions, 3 deletions
diff --git a/detail.php b/detail.php
index e12334d..d1f2126 100644
--- a/detail.php
+++ b/detail.php
@@ -29,13 +29,13 @@ $term = array(
29); 29);
30 30
31$args = $_GET; 31$args = $_GET;
32print "<ul>\n";
32foreach($term as $key => $s) { 33foreach($term as $key => $s) {
33 $args['s'] = $s; 34 $args['s'] = $s;
34 printf('<a href="%s/%s">%s</a>'."\n", 35 printf('<li><a href="%s/%s">%s</a></li>'."\n",
35 $CONFIG['weburl'], build_url('detail.php', $args), $key); 36 $CONFIG['weburl'], build_url('detail.php', $args), $key);
36} 37}
37 38print "</ul>\n";
38print "<br>\n";
39 39
40$plugins = collectd_plugins($host); 40$plugins = collectd_plugins($host);
41 41
diff --git a/layout/style.css b/layout/style.css
index 813f98d..90bc9a5 100644
--- a/layout/style.css
+++ b/layout/style.css
@@ -21,3 +21,12 @@ table.summary td {
21img { 21img {
22 border: 0; 22 border: 0;
23} 23}
24
25ul {
26 margin: 0;
27 padding: 0;
28}
29
30li {
31 display: inline;
32}