From: Aashish Sharma Date: Wed, 16 Sep 2020 06:49:10 +0000 (+0530) Subject: mgr/dashboard: table detail rows overflow X-Git-Tag: v15.2.9~122^2~47^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F37332%2Fhead;p=ceph.git mgr/dashboard: table detail rows overflow Added word-wrap to the rgw-bucket-details table rows to fix overflow of values Fixes:https://tracker.ceph.com/issues/47434 Signed-off-by: Aashish Sharma (cherry picked from commit 7196e03449d585a6b7e1e4065120a571fe2ab894) --- diff --git a/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.scss index e69de29bb2d1..d293c9d98198 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.scss @@ -0,0 +1,7 @@ +table { + table-layout: fixed; +} + +table td { + word-wrap: break-word; +}