summaryrefslogtreecommitdiff
path: root/rt/share/static/css
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2016-06-11 12:24:29 -0700
committerMark Wells <mark@freeside.biz>2016-06-11 23:22:31 -0700
commit89507319807e2f988bffa25981d4df927000f9eb (patch)
tree737a7820a6fc05f0414e7708c65db92621ad41f4 /rt/share/static/css
parent9456eceed9d729643d1bec05ed1b380bbd1bc8ab (diff)
show unreplied marker in RT searches, #41670
Diffstat (limited to 'rt/share/static/css')
-rw-r--r--rt/share/static/css/freeside3/ticket-lists.css14
-rw-r--r--rt/share/static/css/freeside4/ticket-lists.css14
2 files changed, 26 insertions, 2 deletions
diff --git a/rt/share/static/css/freeside3/ticket-lists.css b/rt/share/static/css/freeside3/ticket-lists.css
index 84c9a92de..257cf3b07 100644
--- a/rt/share/static/css/freeside3/ticket-lists.css
+++ b/rt/share/static/css/freeside3/ticket-lists.css
@@ -99,8 +99,18 @@ tr.collection-as-table+tr.collection-as-table th {
}
-
-
+tr.unreplied-ticket > :first-child::before {
+ /* green dot */
+ border: 1px solid black;
+ border-radius: 50%;
+ display: inline-block;
+ height: 1ex;
+ width: 1ex;
+ float: left;
+ content: '';
+ margin-top: 1ex;
+ background-color: green;
+}
table.queue-summary td {
background: #efefef;
diff --git a/rt/share/static/css/freeside4/ticket-lists.css b/rt/share/static/css/freeside4/ticket-lists.css
index cdf10193a..42b343b7c 100644
--- a/rt/share/static/css/freeside4/ticket-lists.css
+++ b/rt/share/static/css/freeside4/ticket-lists.css
@@ -81,6 +81,20 @@ table.collection-as-table.chart th {
border-bottom: 2px solid #ccc
}
+tr.unreplied-ticket > :first-child::before {
+ /* green dot */
+ border: 1px solid black;
+ border-radius: 50%;
+ display: inline-block;
+ height: 1ex;
+ width: 1ex;
+ float: left;
+ content: '';
+ margin-top: 0 auto;
+ margin-bottom: 0 auto;
+ background-color: green;
+}
+
table.queue-summary td {
background: #efefef;
border-bottom: 1px solid #ccc;