From a0a392ff98774d88bab68359830f21f0b140e4aa Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Fri, 7 May 2021 09:32:06 +0200 Subject: [PATCH 1/2] add classes table-sm, table-condensed --- views/bootstrap/class.Clipboard.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/bootstrap/class.Clipboard.php b/views/bootstrap/class.Clipboard.php index 1bd9055a9..b2df501e0 100644 --- a/views/bootstrap/class.Clipboard.php +++ b/views/bootstrap/class.Clipboard.php @@ -233,7 +233,7 @@ class SeedDMS_View_Clipboard extends SeedDMS_Theme_Style { * actually available */ if($foldercount || $doccount) { - $content = "".$content; + $content = "
".$content; $content .= "
"; } else { } From c1e6a8360f9b5b66fe132006591ccabc524d682c Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Fri, 7 May 2021 09:32:32 +0200 Subject: [PATCH 2/2] improve layout of clipboard on small devices --- views/bootstrap4/styles/application.css | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/views/bootstrap4/styles/application.css b/views/bootstrap4/styles/application.css index d030ba45a..732abbef8 100644 --- a/views/bootstrap4/styles/application.css +++ b/views/bootstrap4/styles/application.css @@ -191,17 +191,22 @@ div.splash { div.clipboard-container { position: fixed; - left: 10px; - top: 40px; + left: 0px; + top: 50px; width: 29.8%; + min-width: 200px; background: white; border: 1px solid #d4d4d4; border-radius: 5px; padding: 10px; - height: 500px; + max-height: 400px; margin: 10px; overflow-y: auto; overflow-x: hidden; + z-index: 1; +} +div.clipboard-container legend { + display: none; } div.statusbar-container {