From a9f91e3662b67ff85cf8864ec96352bf766a96ef Mon Sep 17 00:00:00 2001 From: Nathan Febuary <nathan@enhancesoft.com> Date: Wed, 7 Oct 2015 13:48:46 -0500 Subject: [PATCH] Reply and Internal Note button Removed the span, it was unnecessary and gave the Internal Note button a color to differentiate between Reply and Internal Note. --- include/staff/ticket-view.inc.php | 8 ++------ scp/css/scp.css | 12 +++++++++--- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/include/staff/ticket-view.inc.php b/include/staff/ticket-view.inc.php index 82212dea5..481017f5a 100644 --- a/include/staff/ticket-view.inc.php +++ b/include/staff/ticket-view.inc.php @@ -200,12 +200,8 @@ if($ticket->isOverdue()) <?php // Status change options echo TicketStatus::status_options(); ?> - <span class="action-button ticket-response pull-right"data-placement="bottom" data-toggle="tooltip" title="Internal Note"> - <a href="#reply"><i class="icon-file-text"></i></a> - </span> - <span class="action-button ticket-response pull-right" data-placement="bottom" data-toggle="tooltip" title="Post Reply"> - <a href="#note"><i class="icon-mail-reply"></i></a> - </span> + <a href="#" class="post-note ticket-response action-button pull-right" data-placement="bottom" data-toggle="tooltip" title="Internal Note"><i class="icon-file-text"></i></a> + <a href="#" class="post-reply ticket-response action-button pull-right" data-placement="bottom" data-toggle="tooltip" title="Post Reply"><i class="icon-mail-reply"></i></a> </div> <div class="flush-left"> <h2><a href="tickets.php?id=<?php echo $ticket->getId(); ?>" diff --git a/scp/css/scp.css b/scp/css/scp.css index 05e1bdf68..71b494360 100644 --- a/scp/css/scp.css +++ b/scp/css/scp.css @@ -905,10 +905,16 @@ h2 .reload { margin:0; } /***** top page ticket response buttons *****/ -a.ticket-response { - color:#555; +a.post-reply { + color:#555!IMPORTANT; +} +a.post-note { + background-color:#fff9e2; + color:#555!IMPORTANT; +} +a.post-note:hover { + color:#555!IMPORTANT; } - .thread-entry { margin-bottom: 15px; z-index: 0; -- GitLab