diff options
-rw-r--r-- | application/views/file/upload_history.php | 2 | ||||
-rw-r--r-- | data/css/style.css | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/application/views/file/upload_history.php b/application/views/file/upload_history.php index 2f09240a1..9696f6770 100644 --- a/application/views/file/upload_history.php +++ b/application/views/file/upload_history.php @@ -18,7 +18,7 @@ <td><a href="<?php echo site_url("/".$item["id"]) ?>/"><?php echo $item["id"] ?></a></td> <td><?php echo htmlspecialchars($item["filename"]); ?></td> <td><?php echo $item["mimetype"] ?></td> - <td><?php echo $item["date"] ?></td> + <td class="nowrap"><?php echo $item["date"] ?></td> <td><?php echo $item["hash"] ?></td> <td><?php echo $item["filesize"] ?></td> </tr> diff --git a/data/css/style.css b/data/css/style.css index 1be358794..9bfc48d5b 100644 --- a/data/css/style.css +++ b/data/css/style.css @@ -28,6 +28,10 @@ body { } +.nowrap { + white-space: nowrap; +} + code, pre { font-family: "Dejavu sans mono", Monaco, monospace; } |