Repository: qpid-dispatch Updated Branches: refs/heads/master 9a48334eb -> c48c99c41
DISPATCH-1059 Make console navigation trees full page height. Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/c48c99c4 Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/c48c99c4 Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/c48c99c4 Branch: refs/heads/master Commit: c48c99c41cc9eec2129f836bf4d0cf0c08b705f3 Parents: 9a48334 Author: Ernest Allen <[email protected]> Authored: Mon Jul 2 14:09:03 2018 -0400 Committer: Ernest Allen <[email protected]> Committed: Mon Jul 2 14:09:03 2018 -0400 ---------------------------------------------------------------------- console/stand-alone/plugin/html/qdrList.html | 6 ++++++ console/stand-alone/plugin/html/qdrOverview.html | 7 +++++++ 2 files changed, 13 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/c48c99c4/console/stand-alone/plugin/html/qdrList.html ---------------------------------------------------------------------- diff --git a/console/stand-alone/plugin/html/qdrList.html b/console/stand-alone/plugin/html/qdrList.html index 06faa43..fc9b19c 100644 --- a/console/stand-alone/plugin/html/qdrList.html +++ b/console/stand-alone/plugin/html/qdrList.html @@ -58,6 +58,12 @@ span.fancytree-icon { margin-left: 20px; } +@media (min-width: 768px) { + .navbar-collapse.page-menu { + padding-right: 0; + min-height: calc(100vh - 71px) !important; + } +} </style> <div id="list-controller" ng-controller="QDR.ListController"> http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/c48c99c4/console/stand-alone/plugin/html/qdrOverview.html ---------------------------------------------------------------------- diff --git a/console/stand-alone/plugin/html/qdrOverview.html b/console/stand-alone/plugin/html/qdrOverview.html index 3b4acb9..da75017 100644 --- a/console/stand-alone/plugin/html/qdrOverview.html +++ b/console/stand-alone/plugin/html/qdrOverview.html @@ -64,6 +64,13 @@ span.fancytree-icon { margin-left: 20px; } +@media (min-width: 768px) { + .navbar-collapse.page-menu { + padding-right: 0; + min-height: calc(100vh - 71px) !important; + } +} + </style> <div id="overview-controller" ng-controller="QDR.OverviewController"> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
