This is an automated email from the ASF dual-hosted git repository. pradeep pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/ranger.git
commit 0c7c12d1da2162d8a605ad394359490d083c38bf Author: Nitin Galave <[email protected]> AuthorDate: Thu Jun 3 18:10:33 2021 +0530 RANGER-3301: [UI] in admin audit log tables are not formatted correctly for long string value for resources. Signed-off-by: pradeep <[email protected]> --- security-admin/src/main/webapp/styles/xa.css | 1 + .../webapp/templates/reports/PlugableServicePolicyDeleteDiff_tmpl.html | 2 +- .../main/webapp/templates/reports/PlugableServicePolicyDiff_tmpl.html | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/security-admin/src/main/webapp/styles/xa.css b/security-admin/src/main/webapp/styles/xa.css index 9762a3b..0435174 100644 --- a/security-admin/src/main/webapp/styles/xa.css +++ b/security-admin/src/main/webapp/styles/xa.css @@ -1477,6 +1477,7 @@ ul.tabs > li > a { } .change-row { background-color: #fef7cd; + white-space: nowrap; } .add-text { background-color: #e1f2d3; diff --git a/security-admin/src/main/webapp/templates/reports/PlugableServicePolicyDeleteDiff_tmpl.html b/security-admin/src/main/webapp/templates/reports/PlugableServicePolicyDeleteDiff_tmpl.html index 3166402..e9131cd 100644 --- a/security-admin/src/main/webapp/templates/reports/PlugableServicePolicyDeleteDiff_tmpl.html +++ b/security-admin/src/main/webapp/templates/reports/PlugableServicePolicyDeleteDiff_tmpl.html @@ -26,7 +26,7 @@ {{#if collection.length}} <h5 class="bold wrap-header m-t-sm">Policy Details:</h5> - <div class="diff"> + <div class="diff table-responsive"> <div class="diff-left"> <h3>Fields</h3> <ol class="attr"> diff --git a/security-admin/src/main/webapp/templates/reports/PlugableServicePolicyDiff_tmpl.html b/security-admin/src/main/webapp/templates/reports/PlugableServicePolicyDiff_tmpl.html index 5a54d62..2470059 100644 --- a/security-admin/src/main/webapp/templates/reports/PlugableServicePolicyDiff_tmpl.html +++ b/security-admin/src/main/webapp/templates/reports/PlugableServicePolicyDiff_tmpl.html @@ -28,7 +28,7 @@ <div class="no-margin label-size13-weightbold">Created By: {{userName}}</div> {{#if collection.length}} <h5 class="bold wrap-header m-t-sm">Policy Details:</h5> - <div class="diff"> + <div class="diff table-responsive"> <div class="diff-left"> <h3>Fields</h3> <ol class="attr">
