summaryrefslogtreecommitdiff
path: root/public/style.css
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2021-11-20 00:48:28 +0100
committerTor Andersson <tor@ccxvii.net>2021-11-20 00:48:28 +0100
commit6818805da05c4b4f0ed55d93d3bfd1af171abe47 (patch)
tree407cadf1486715eebbdf69a8e324c584550a1630 /public/style.css
parentfc1688b688c77d8ff11db45f51855ccce6e74a3a (diff)
downloadserver-6818805da05c4b4f0ed55d93d3bfd1af171abe47.tar.gz
Fix stats.
Diffstat (limited to 'public/style.css')
-rw-r--r--public/style.css19
1 files changed, 13 insertions, 6 deletions
diff --git a/public/style.css b/public/style.css
index 89ba3b2..1b9481c 100644
--- a/public/style.css
+++ b/public/style.css
@@ -47,24 +47,31 @@ table { min-width: min(50rem,100%); }
table { border-collapse: collapse; }
th { text-align: left; background-color: gainsboro; }
th, td { border: 1px solid black; padding: 3px 1ex; }
-th a, td:not(.command) a { text-decoration: none; color: black; }
+th a:not(:hover), td:not(.command) a:not(:hover) { text-decoration: none; }
td.body { white-space: pre-wrap; padding: 10px 10px; }
input[type="text"], input[type="password"], textarea {
padding: 5px;
-}
-button, input, select {
margin: 5px 0;
+ border: 1px solid black;
}
button, select {
margin: 5px 10px 5px 0;
padding: 1px 10px;
background-color: gainsboro;
vertical-align: top;
+ border: 2px outset white;
+ outline: 1px solid black;
+}
+button:enabled:active:hover, select:active {
+ border: 2px inset white;
+ padding: 2px 9px 0px 11px;
+}
+button:disabled {
+ color: gray;
+ border: 2px solid gainsboro;
+ outline: 1px solid gray;
}
-button:disabled { color: gray; border: 2px solid gainsboro; outline: 1px solid gray; }
-button:enabled, select { border: 2px outset white; outline: 1px solid black; }
-button:enabled:active:hover, select:active { border: 2px inset white; padding: 2px 9px 0px 11px; }
td.is_active { background-color: lemonchiffon; }
p.error { color: brown; font-style: italic; white-space: pre-wrap; }