From 85f7447ba962fa3235601fc603fb0eca3a680fed Mon Sep 17 00:00:00 2001
From: Peter Rotich <peter@osticket.com>
Date: Wed, 31 Oct 2012 12:46:45 -0400
Subject: [PATCH] Removed fixed table header width on ticket listing table Use
 non-minimized css - users can minimize on their own

---
 assets/default/css/theme.css   | 2 +-
 include/client/header.inc.php  | 2 +-
 include/client/tickets.inc.php | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/assets/default/css/theme.css b/assets/default/css/theme.css
index 206cbe9fd..9780f0e04 100644
--- a/assets/default/css/theme.css
+++ b/assets/default/css/theme.css
@@ -605,7 +605,7 @@ body {
   color: #a00;
 }
 #ticketTable th {
-  width: 160px;
+  padding-left: 3px;
   font-weight: normal;
   text-align: left;
 }
diff --git a/include/client/header.inc.php b/include/client/header.inc.php
index 81191f98b..da763a7bb 100644
--- a/include/client/header.inc.php
+++ b/include/client/header.inc.php
@@ -10,7 +10,7 @@ header("Content-Type: text/html; charset=UTF-8\r\n");
     <meta name="description" content="customer support platform">
     <meta name="keywords" content="osTicket, Customer support system, support ticket system">
     <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
-    <link rel="stylesheet" href="<?php echo ASSETS_PATH; ?>css/theme.min.css" media="screen">
+    <link rel="stylesheet" href="<?php echo ASSETS_PATH; ?>css/theme.css" media="screen">
     <link rel="stylesheet" href="<?php echo ASSETS_PATH; ?>css/print.css" media="print">
     <script src="<?php echo ROOT_PATH; ?>js/jquery-1.7.2.min.js"></script>
     <script src="<?php echo ROOT_PATH; ?>js/jquery.multifile.js"></script>
diff --git a/include/client/tickets.inc.php b/include/client/tickets.inc.php
index 1ee781a90..7f1751872 100644
--- a/include/client/tickets.inc.php
+++ b/include/client/tickets.inc.php
@@ -114,13 +114,13 @@ $negorder=$order=='DESC'?'ASC':'DESC'; //Negate the sorting
             <th width="80">
                 <a href="tickets.php?sort=status&order=<?php echo $negorder; ?><?php echo $qstr; ?>" title="Sort By Status">Status</a>
             </th>
-            <th width="240">
+            <th width="300">
                 <a href="tickets.php?sort=subj&order=<?php echo $negorder; ?><?php echo $qstr; ?>" title="Sort By Subject">Subject</a>
             </th>
             <th width="150">
                 <a href="tickets.php?sort=dept&order=<?php echo $negorder; ?><?php echo $qstr; ?>" title="Sort By Department">Department</a>
             </th>
-            <th width="150">Phone Number</th>
+            <th width="100">Phone Number</th>
         </tr>
     </thead>
     <tbody>
-- 
GitLab