You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2020/12/19 20:39:19 UTC

[hbase] branch branch-2 updated: HBASE-25404 Procedures table Id under master web UI gets word break to single character (#2783)

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

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


The following commit(s) were added to refs/heads/branch-2 by this push:
     new 914b356  HBASE-25404 Procedures table Id under master web UI gets word break to single character (#2783)
914b356 is described below

commit 914b356d1562094a271120c37b107f81e5528375
Author: Akshay Sudheer <74...@users.noreply.github.com>
AuthorDate: Sun Dec 20 02:07:21 2020 +0530

    HBASE-25404 Procedures table Id under master web UI gets word break to single character (#2783)
    
    Signed-off-by: Duo Zhang <zh...@apache.org>
---
 hbase-server/src/main/resources/hbase-webapps/master/procedures.jsp | 2 +-
 hbase-server/src/main/resources/hbase-webapps/static/css/hbase.css  | 5 +++++
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/hbase-server/src/main/resources/hbase-webapps/master/procedures.jsp b/hbase-server/src/main/resources/hbase-webapps/master/procedures.jsp
index 8e1e238..fba9a42 100644
--- a/hbase-server/src/main/resources/hbase-webapps/master/procedures.jsp
+++ b/hbase-server/src/main/resources/hbase-webapps/master/procedures.jsp
@@ -123,7 +123,7 @@
       </div>
   </div>
   <p>We do not list procedures that have completed successfully; their number makes it hard to spot the problematics.</p>
-  <table class="table table-striped" width="90%" >
+  <table class="table table-striped" id="tab_Procedures" width="90%" >
     <tr>
         <th>Id</th>
         <th>Parent</th>
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 d1cc0fe..2661c8d 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
@@ -39,6 +39,11 @@ section { margin-bottom: 3em; }
     margin-top: 1.2em;
 }
 
+table#tab_Procedures td:nth-child(-n+7) {
+    word-break: normal;
+    overflow-wrap: normal;
+}
+
 /* Region Server page styling */
 
 /* striped tables styling */