diff options
| author | Mark Wells <mark@freeside.biz> | 2016-06-11 12:24:29 -0700 |
|---|---|---|
| committer | Mark Wells <mark@freeside.biz> | 2016-06-11 12:24:29 -0700 |
| commit | f136b7059017863e2ff4819376c42fe5869b2042 (patch) | |
| tree | a9d583da0553cd844f93c5dab0ef8cb60ab4ba08 /rt/share/static/css | |
| parent | 603701ab0bbee8dd44b1a27cd7f527e8e8be8c6e (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.css | 14 | ||||
| -rw-r--r-- | rt/share/static/css/freeside4/ticket-lists.css | 14 |
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; |
