changeset 4624:60a0cf3c0f3d

css: add changeset-status classes for mapping a status to a color
author Sean Farley <sean.michael.farley@gmail.com>
date Fri, 31 Oct 2014 11:01:23 -0700
parents 27c7922c745d
children 40f65bfc04d0
files kallithea/public/css/style.css
diffstat 1 files changed, 14 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/public/css/style.css	Tue Jul 15 01:38:38 2014 -0500
+++ b/kallithea/public/css/style.css	Fri Oct 31 11:01:23 2014 -0700
@@ -2719,6 +2719,20 @@
     float: left;
 }
 
+/* changeset statuses (must be the same name as the status) */
+.changeset-status-not_reviewed {
+    color: #bababa;
+}
+.changeset-status-approved {
+    color: #81ba51;
+}
+.changeset-status-rejected {
+    color: #cc392e;
+}
+.changeset-status-under_review {
+    color: #ffc71e;
+}
+
 #graph_content .comments-cnt {
     color: rgb(136, 136, 136);
     padding: 5px 0;