From aa8db7f2abef92458b86f05374e2dc094c9e76c7 Mon Sep 17 00:00:00 2001 From: Jared Hancock <jared@osticket.com> Date: Fri, 25 Sep 2015 12:53:49 -0500 Subject: [PATCH] client: Allow flexible sizing of ticket listing columns --- assets/default/css/theme.css | 1 - include/client/tickets.inc.php | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/assets/default/css/theme.css b/assets/default/css/theme.css index 33f8d83d2..26c26944d 100644 --- a/assets/default/css/theme.css +++ b/assets/default/css/theme.css @@ -801,7 +801,6 @@ label.required, span.required { border: 1px solid #aaa; border-left: none; border-bottom: none; - table-layout: fixed; } #ticketTable caption { padding: 5px; diff --git a/include/client/tickets.inc.php b/include/client/tickets.inc.php index 4109b822c..7826a170d 100644 --- a/include/client/tickets.inc.php +++ b/include/client/tickets.inc.php @@ -225,7 +225,7 @@ if ($closedTickets) {?> <td> <?php echo Format::date($T['created']); ?></td> <td> <?php echo $status; ?></td> <td> - <div style="max-height: 1.2em" class="link truncate" href="tickets.php?id=<?php echo $T['ticket_id']; ?>"><?php echo $subject; ?></div> + <div style="max-height: 1.2em; max-width: 320px;" class="link truncate" href="tickets.php?id=<?php echo $T['ticket_id']; ?>"><?php echo $subject; ?></div> </td> <td> <span class="truncate"><?php echo $dept; ?></span></td> </tr> -- GitLab