summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2019-09-27 11:06:56 +0200
committerYorhel <git@yorhel.nl>2019-09-27 11:07:05 +0200
commitda2ee73149aade8bc88bc4f87a424dc60348c7fc (patch)
tree457d8512112c58c45ccb72822e7bc617228db111 /data
parent092158fee02c3516ae08f7efcef8f1774bf823e5 (diff)
v2rw: Convert history listings
And I changed the filter selection into a more form-like thing. It's slightly more powerful, but not sure it's such a huge improvement in terms of UI. Everything should be identical apart from that.
Diffstat (limited to 'data')
-rw-r--r--data/style.css7
1 files changed, 6 insertions, 1 deletions
diff --git a/data/style.css b/data/style.css
index afa16fb1..eb1830a0 100644
--- a/data/style.css
+++ b/data/style.css
@@ -42,7 +42,7 @@ table.stripe tbody tr:nth-child(odd):not(.nostripe),
#debug h2 { color: #f00!important; font-size: 20px; }
#debug, #debug a { color: #fff!important; }
-.visuallyhidden {
+.visuallyhidden, p.linkradio input {
position: absolute !important;
left: 0;
height: 1px; width: 1px;
@@ -153,6 +153,11 @@ table.formtable td { padding: 0; }
table.formtable tr.newfield td { padding-top: 5px; }
table.formtable tr.newpart td { padding-top: 20px; font-weight: bold; }
+p.linkradio { padding: 2px }
+p.linkradio label { color: $link$; cursor: pointer }
+p.linkradio input:checked + label { color: $maintext$ }
+p.linkradio em { font-weight: normal; font-style: normal; color: $grayedout$ }
+
div.spinner { content: ''; border: 3px solid #9eaebd; border-bottom-color: transparent; border-radius: 100%; animation: spin 1s infinite linear; width: 14px; height: 14px; display: inline-block; margin: auto }
@keyframes spin { from { transform:rotate(0deg); } to { transform:rotate(360deg); } }