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:03:31 UTC

[hbase] branch master 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 master
in repository https://gitbox.apache.org/repos/asf/hbase.git


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

commit d46adc7cc8d7f3c85270b63306a8fee9ae9875e1
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);