From 7ccdd865098771ed9160820ead4be0e125620780 Mon Sep 17 00:00:00 2001
From: Peter Rotich <peter@osticket.com>
Date: Sat, 28 Apr 2012 12:20:20 -0400
Subject: [PATCH] Improve thread view

---
 include/staff/ticket-view.inc.php | 6 +++---
 scp/css/scp.css                   | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/include/staff/ticket-view.inc.php b/include/staff/ticket-view.inc.php
index ff46ace13..a299b04fc 100644
--- a/include/staff/ticket-view.inc.php
+++ b/include/staff/ticket-view.inc.php
@@ -233,9 +233,9 @@ if(!$cfg->showNotesInline()) { ?>
        foreach($thread as $entry) {
            ?>
         <table class="<?php echo $threadTypes[$entry['thread_type']]; ?>" cellspacing="0" cellpadding="1" width="940" border="0">
-            <tr><th width="640"><?php echo Format::db_datetime($entry['created']);?>
-                    &nbsp;&nbsp;<span><?php echo Format::htmlchars($entry['title']); ?></span>
-                </th>
+            <tr>
+                <th width="200"><?php echo Format::db_datetime($entry['created']);?></th>
+                <th width="440"><span><?php echo Format::htmlchars($entry['title']); ?></span></th>
                 <th width="300" class="tmeta"><?php echo Format::htmlchars($entry['poster']); ?></th></tr>
             <tr><td colspan=2><?php echo Format::display($entry['body']); ?></td></tr>
             <?php
diff --git a/scp/css/scp.css b/scp/css/scp.css
index 1964dfe80..adde43faf 100644
--- a/scp/css/scp.css
+++ b/scp/css/scp.css
@@ -730,7 +730,7 @@ h2 .reload {
 }
 
 #ticket_thread table th.tmeta {
-    font-weight:normal;
+    font-weight:bold;
     font-size:10pt;
     color:#888;
     text-align:right;
@@ -741,7 +741,7 @@ h2 .reload {
     font-weight:normal;
     font-size:10pt;
     color:#888;
-    padding-left:15px;
+    padding-left:5px;
 }
 
 #ticket_thread .message th {
-- 
GitLab