From: Nizamudeen A Date: Tue, 4 Aug 2020 08:45:45 +0000 (+0530) Subject: mgr/dashboard: Fix for CrushMap viewer items getting compressed vertically X-Git-Tag: v15.2.9~122^2~112^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F36871%2Fhead;p=ceph.git mgr/dashboard: Fix for CrushMap viewer items getting compressed vertically Intents to fix the crushmap viewer tree children getting compressed vertically when more osd's are added. Fixes: https://tracker.ceph.com/issues/46826 Signed-off-by: Nizamudeen A (cherry picked from commit 166681df08e01e85617885f492d665a74486ab8f) --- diff --git a/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/crushmap/crushmap.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/crushmap/crushmap.component.scss index e69de29bb2d1..629646246dbe 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/crushmap/crushmap.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/crushmap/crushmap.component.scss @@ -0,0 +1,7 @@ +::ng-deep tree-root { + tree-viewport { + div:first-child { + height: unset !important; + } + } +}