Updated priority colors on customer side
This commit is contained in:
parent
46721d4212
commit
9ed88a1e02
@ -302,6 +302,14 @@ div.setupButtons {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.critical-priority {
|
||||
background-color: #9400d3;
|
||||
}
|
||||
|
||||
.lowPriority {
|
||||
background-color: blue;
|
||||
}
|
||||
|
||||
.pad-down-20 {
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
@ -283,11 +283,13 @@ if (!$show['show']) {
|
||||
$repliesColumnWidth = 2;
|
||||
echo '<div class="col-md-2 col-sm-12 ticket-cell ';
|
||||
if ($ticket['priority'] == 0) {
|
||||
echo 'criticalPriority">';
|
||||
echo 'critical-priority">';
|
||||
} elseif ($ticket['priority'] == 1) {
|
||||
echo 'highPriority">';
|
||||
} else {
|
||||
} elseif ($ticket['priority'] == 2) {
|
||||
echo 'medLowPriority">';
|
||||
} else {
|
||||
echo 'lowPriority">';
|
||||
}
|
||||
echo '<p class="ticketPropertyTitle">' . $hesklang['priority'] . '</p>';
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user