aboutsummaryrefslogtreecommitdiff
path: root/data/zebra-stripes.css
diff options
context:
space:
mode:
Diffstat (limited to 'data/zebra-stripes.css')
-rw-r--r--data/zebra-stripes.css16
1 files changed, 16 insertions, 0 deletions
diff --git a/data/zebra-stripes.css b/data/zebra-stripes.css
new file mode 100644
index 0000000..5f13d79
--- /dev/null
+++ b/data/zebra-stripes.css
@@ -0,0 +1,16 @@
+/* TODO: This is currently unused, but when alternating treeview row colours
+ * are restored, this will be the default CSS code to activate them if the
+ * current theme doesn't provide its own code for this.
+ */
+
+
+treeview:not(:selected).odd.sorted,
+treeview:not(:selected).even:not(.sorted)
+{
+ background: alpha(black, 0.07);
+}
+
+treeview:not(:selected).even.sorted
+{
+ background: alpha(black, 0.13);
+}
bgstack15