summary refs log tree commit diff
path: root/default.css
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-07-10 14:54:45 -0400
committerJune McEnroe <june@causal.agency>2020-07-10 14:54:45 -0400
commit3926094bc216277ff6c58e6e9efba64fc7af91da (patch)
tree55362740094489c3e59fbc125ed181dd18cf0077 /default.css
parentAdd -l and -r options (diff)
downloadscooper-3926094bc216277ff6c58e6e9efba64fc7af91da.tar.gz
scooper-3926094bc216277ff6c58e6e9efba64fc7af91da.zip
Implement partial table output of events
This should work for both events and search pages.
Diffstat (limited to 'default.css')
-rw-r--r--default.css17
1 files changed, 17 insertions, 0 deletions
diff --git a/default.css b/default.css
index 449132f..40d9e88 100644
--- a/default.css
+++ b/default.css
@@ -36,7 +36,24 @@ nav form {
 	margin-top: 1em;
 }
 
+td.nick {
+	text-align: right;
+}
+tr.privmsg td.nick span::before {
+	content: '<';
+}
+tr.privmsg td.nick span::after {
+	content: '>';
+}
+tr.action td.nick span::before {
+	content: '* ';
+}
+tr.notice td.nick span::before, tr.notice td.nick span::after {
+	content: '-';
+}
+
 footer {
+	margin-top: 1em;
 	display: flex;
 	flex-wrap: wrap;
 	justify-content: space-between;