From e75d89113ac3e716d8fecdcca36f98f2777313f0 Mon Sep 17 00:00:00 2001 From: David Duque Date: Sat, 25 Apr 2020 04:17:55 +0100 Subject: [PATCH] Test --- management/templates/system-status.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/management/templates/system-status.html b/management/templates/system-status.html index 4c0df601..abb13fdd 100644 --- a/management/templates/system-status.html +++ b/management/templates/system-status.html @@ -31,7 +31,7 @@ word-wrap: break-word; } - #system-checks a.showhide { + #system-checks .showhide { display: none; font-size: 85%; } @@ -103,7 +103,7 @@ function (r) { $('#system-checks tbody').html(""); for (var i = 0; i < r.length; i++) { - var n = $("

"); + var n = $("

"); if (i == 0) n.addClass('first') if (r[i].type == "heading") n.addClass(r[i].type) @@ -116,7 +116,7 @@ $('#system-checks tbody').append(n); if (r[i].extra.length > 0) { - n.find('a.showhide').show().text("show more").click(function () { + n.find('.showhide').show().text("show more").click(function () { $(this).hide(); $(this).parent().find('.extra').fadeIn(); return false;