aboutsummaryrefslogtreecommitdiff
path: root/data/zebra-stripes.css
diff options
context:
space:
mode:
authorGordon Norman Squash <gordsqsh@protonmail.com>2024-09-10 01:28:29 -0400
committerGordon Norman Squash <gordsqsh@protonmail.com>2024-09-10 01:30:42 -0400
commit472d7c466d33bd1fe4cd293b354e52bf16384520 (patch)
tree08398a71fd7838967649c73f005f98bfe7b843d2 /data/zebra-stripes.css
downloadgtk3-classic-module-472d7c466d33bd1fe4cd293b354e52bf16384520.tar.gz
gtk3-classic-module-472d7c466d33bd1fe4cd293b354e52bf16384520.tar.bz2
gtk3-classic-module-472d7c466d33bd1fe4cd293b354e52bf16384520.zip
Initial commit
This is where I have started tracking development with Git. I declare this as version 0.89.
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