You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by se...@apache.org on 2020/05/06 07:05:11 UTC

[openmeetings] branch feature/OPENMEETINGS-2344-file-explorer-overflow created (now 03b9dc2)

This is an automated email from the ASF dual-hosted git repository.

sebawagner pushed a change to branch feature/OPENMEETINGS-2344-file-explorer-overflow
in repository https://gitbox.apache.org/repos/asf/openmeetings.git.


      at 03b9dc2  OPENMEETINGS-2344 Add horizontal scroll if size exceeds window size.

This branch includes the following new commits:

     new 03b9dc2  OPENMEETINGS-2344 Add horizontal scroll if size exceeds window size.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[openmeetings] 01/01: OPENMEETINGS-2344 Add horizontal scroll if size exceeds window size.

Posted by se...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sebawagner pushed a commit to branch feature/OPENMEETINGS-2344-file-explorer-overflow
in repository https://gitbox.apache.org/repos/asf/openmeetings.git

commit 03b9dc2a131dcacb40c79c5bb880ee052786ca3e
Author: Sebastian Wagner <se...@apache.org>
AuthorDate: Wed May 6 19:04:34 2020 +1200

    OPENMEETINGS-2344 Add horizontal scroll if size exceeds window size.
---
 openmeetings-web/src/main/webapp/css/raw-tree.css | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/openmeetings-web/src/main/webapp/css/raw-tree.css b/openmeetings-web/src/main/webapp/css/raw-tree.css
index 8ce7d97..b978f1d 100644
--- a/openmeetings-web/src/main/webapp/css/raw-tree.css
+++ b/openmeetings-web/src/main/webapp/css/raw-tree.css
@@ -7,7 +7,8 @@
 }
 .file-tree .trees {
 	height: calc(100% - var(--tree-header-height) - var(--tree-footer-height));
-	overflow-x: hidden;
+	width: var(--room-sidebar-width);
+	overflow-x: auto;
 	overflow-y: auto;
 }
 .file-tree .trees #tree-anchor {