From 422bb56fd49b900ca603435de76c7a7dc15e1578 Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: Jul 03 2013 22:51:15 +0000 Subject: Update visual style for mantis-1.1.8-5.el5 package. - The "Issue History" table needs to be updated. All the td elements must not wrap except the one describing the change which must wrap. It would be also nice to save space on Date Modified, Username and Field columns using as few space as needed leaving the rest to Change column. Fixed. --- diff --git a/Artworks/Webenv/Mantis/1.1.8-5.el5/css/default-centos.css b/Artworks/Webenv/Mantis/1.1.8-5.el5/css/default-centos.css index 2d05f48..175ef22 100644 --- a/Artworks/Webenv/Mantis/1.1.8-5.el5/css/default-centos.css +++ b/Artworks/Webenv/Mantis/1.1.8-5.el5/css/default-centos.css @@ -40,9 +40,10 @@ html { body { background-color: #ffffff; - color: #000000; - padding: 0 10px; - } + color: #000000; + padding: 0 10px; + min-width: 728px; + } /* Links */ @@ -309,6 +310,23 @@ body > table:last-child td { padding: 10px 0 0 0; } +/* Issue History table customziation */ + +div#history_open td { + /* Consume the smallest amount of horizontal space in the first + * columns which are not wrapped. */ + width: 1%; + } + +div#history_open td:last-child { + /* Consume the largest amount of horizontal space in the last + * column which is wrapped. */ + width: 97%; + white-space: normal; + } + +/* Footer */ + #footer { clear: both; background: #204C8D url("../images/header-background.png") 0 0 repeat;