You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by gx...@apache.org on 2020/06/23 02:08:18 UTC

[hbase] branch branch-2.3 updated: HBASE-24605 Break long region names in the web UI (#1942)

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

gxcheng pushed a commit to branch branch-2.3
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2.3 by this push:
     new f4845eb  HBASE-24605 Break long region names in the web UI (#1942)
f4845eb is described below

commit f4845eb36f9df9d6aafb923a81bb50e3a64d26f6
Author: xincunSong <36...@qq.com>
AuthorDate: Tue Jun 23 10:03:18 2020 +0800

    HBASE-24605 Break long region names in the web UI (#1942)
    
    Signed-off-by: Duo Zhang <zh...@apache.org>
    Signed-off-by: Guangxu Cheng <gx...@apache.org>
---
 hbase-server/src/main/resources/hbase-webapps/static/css/hbase.css | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/hbase-server/src/main/resources/hbase-webapps/static/css/hbase.css b/hbase-server/src/main/resources/hbase-webapps/static/css/hbase.css
index 182f2ae..6150877 100644
--- a/hbase-server/src/main/resources/hbase-webapps/static/css/hbase.css
+++ b/hbase-server/src/main/resources/hbase-webapps/static/css/hbase.css
@@ -41,6 +41,12 @@ section { margin-bottom: 3em; }
 
 /* Region Server page styling */
 
+/* striped tables styling */
+table.table-striped td {
+    word-break: break-all;
+    overflow-wrap: break-word;
+}
+
 /* sortable tables styling */
 table.tablesorter thead tr .header {
     background-image: url(bg.gif);