You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by so...@apache.org on 2020/04/13 03:39:50 UTC

[openmeetings] branch master updated: [OPENMEETINGS-2254] overflow-wrap is added

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

solomax pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openmeetings.git


The following commit(s) were added to refs/heads/master by this push:
     new faa9fbf  [OPENMEETINGS-2254] overflow-wrap is added
faa9fbf is described below

commit faa9fbfc591f163e794075d13df7a099d9470f16
Author: Maxim Solodovnik <so...@gmail.com>
AuthorDate: Mon Apr 13 10:39:35 2020 +0700

    [OPENMEETINGS-2254] overflow-wrap is added
---
 .../org/apache/openmeetings/web/admin/connection/ConnectionsPanel.html | 2 +-
 openmeetings-web/src/main/webapp/css/raw-general.css                   | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/openmeetings-web/src/main/java/org/apache/openmeetings/web/admin/connection/ConnectionsPanel.html b/openmeetings-web/src/main/java/org/apache/openmeetings/web/admin/connection/ConnectionsPanel.html
index 76a2b2e..10f0e10 100644
--- a/openmeetings-web/src/main/java/org/apache/openmeetings/web/admin/connection/ConnectionsPanel.html
+++ b/openmeetings-web/src/main/java/org/apache/openmeetings/web/admin/connection/ConnectionsPanel.html
@@ -37,7 +37,7 @@
 			<tbody wicket:id="container">
 				<tr wicket:id="clientList">
 					<td class="col-2" wicket:id="type"></td>
-					<td class="col-2" wicket:id="login"></td>
+					<td class="col-2 overflow-break-word" wicket:id="login"></td>
 					<td class="col-2" wicket:id="since"></td>
 					<td class="col-2" wicket:id="scope"></td>
 					<td class="col-2 p-0"><a wicket:id="kick" class="om-kick-btn"></a></td>
diff --git a/openmeetings-web/src/main/webapp/css/raw-general.css b/openmeetings-web/src/main/webapp/css/raw-general.css
index 34d8045..08b28d7 100644
--- a/openmeetings-web/src/main/webapp/css/raw-general.css
+++ b/openmeetings-web/src/main/webapp/css/raw-general.css
@@ -766,3 +766,6 @@ select.messages.selector {
 	overflow-y: auto;
 	height: calc(100% - var(--header-height));
 }
+.overflow-break-word {
+	overflow-wrap: break-word;
+}