aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthe lemons <citrons@mondecitronne.com>2022-02-09 00:56:19 -0600
committerthe lemons <citrons@mondecitronne.com>2022-02-09 00:56:19 -0600
commitd0deeabef7ba7bff783cea03d8fcc13b5876c504 (patch)
tree7b441fc778e6d727b4c07babb6968c1defe855e0
parentccdab803c82f40b47f96ddbf89f746fe5c6cfec5 (diff)
display log at all times
-rw-r--r--static/amethyst.css14
-rwxr-xr-xzzcxz.cgi9
2 files changed, 11 insertions, 12 deletions
diff --git a/static/amethyst.css b/static/amethyst.css
index b285dc1..a6f22c1 100644
--- a/static/amethyst.css
+++ b/static/amethyst.css
@@ -59,7 +59,7 @@ li {
footer {
border-top: 2px solid white;
- margin-top: 50px;
+ margin-top: 20px;
padding-bottom: 50px;
font-size: smaller;
font-style: italic;
@@ -273,26 +273,28 @@ grge {
flex-wrap: wrap;
}
-.hist-log > ul {
+.hist-log {
padding: 10px;
border-radius: 10px;
font-family: monospace;
overflow-y: scroll;
overflow-x: hidden;
- height: 190px;
+ height: 85px;
background-color: black;
font-size: larger;
+ margin-top: 20px;
+ margin-bottom: 20px;
}
-.hist-log > ul > li {
+.hist-log > li {
list-style: none;
}
-.hist-log > ul > li:before {
+.hist-log > li:before {
content: "→ ";
}
-.hist-log > ul > li > strong {
+.hist-log > li > strong {
color: white;
}
diff --git a/zzcxz.cgi b/zzcxz.cgi
index c6b2816..c7b1f63 100755
--- a/zzcxz.cgi
+++ b/zzcxz.cgi
@@ -298,12 +298,9 @@ local function new_action(page, action, result)
end
local hist_template = template [[
- <details class="hist-log">
- <summary>log</summary>
- <ul>
- $log
- </ul>
- </details>
+ <ul class="hist-log">
+ $log
+ </ul>
]]
local function show_hist(show_ids)
local log = {}