changeset 1597:98a1636c7255

importqueue: no-wrap and horizontal scrollbar added
author Thomas Junk <thomas.junk@intevation.de>
date Mon, 17 Dec 2018 10:13:04 +0100
parents 74413d52c439
children 4057b366db5f
files client/src/components/importqueue/Importqueuedetail.vue
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/importqueue/Importqueuedetail.vue	Fri Dec 14 18:35:09 2018 +0100
+++ b/client/src/components/importqueue/Importqueuedetail.vue	Mon Dec 17 10:13:04 2018 +0100
@@ -272,6 +272,7 @@
 
 .type {
   width: 65px;
+  white-space: nowrap;
   padding-left: 0px;
   border-top: 0px;
   padding-bottom: $small-offset;
@@ -279,6 +280,7 @@
 
 .datetime {
   width: 200px;
+  white-space: nowrap;
   padding-left: 0px;
   border-top: 0px;
   padding-bottom: $small-offset;
@@ -286,6 +288,7 @@
 
 .message {
   width: 600px;
+  white-space: nowrap;
   padding-left: 0px;
   border-top: 0px;
   padding-bottom: $small-offset;
@@ -299,6 +302,6 @@
 tbody {
   height: 150px;
   overflow-y: auto;
-  overflow-x: hidden;
+  overflow-x: auto;
 }
 </style>