From 3602c5fdde5d098d2fbe07fc6e2841151a3e70cd Mon Sep 17 00:00:00 2001 From: Scott Baker Date: Sun, 18 Jan 2015 16:53:56 -0800 Subject: [PATCH] fix tenant view causes minidashboard to be partially obscured --- .../core/xoslib/dashboards/xosTenant.html | 2 +- .../xoslib/static/css/xosTenantDashboard.css | 34 +++++++++++++++++++ 2 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 planetstack/core/xoslib/static/css/xosTenantDashboard.css diff --git a/planetstack/core/xoslib/dashboards/xosTenant.html b/planetstack/core/xoslib/dashboards/xosTenant.html index 1287e15..6735da3 100644 --- a/planetstack/core/xoslib/dashboards/xosTenant.html +++ b/planetstack/core/xoslib/dashboards/xosTenant.html @@ -6,7 +6,7 @@ - + diff --git a/planetstack/core/xoslib/static/css/xosTenantDashboard.css b/planetstack/core/xoslib/static/css/xosTenantDashboard.css new file mode 100644 index 0000000..7ef275d --- /dev/null +++ b/planetstack/core/xoslib/static/css/xosTenantDashboard.css @@ -0,0 +1,34 @@ +.btn-xos-detail { + display: none; +} + +.btn-xos-list { + display: none; +} + +#logPanel { + overflow-y: auto; + overflow-x: hidden; +} + +#logTable { + width: 100%; + white-space: nowrap; +} + +#logTable tr { + border-bottom: 1px solid; +} + +#logTable tr:last-child { + border-bottom: none; +} + +#contentButtonPanel { + float: right; + width: 200px; +} + +#contentInner { + margin-right: 200px; +} -- 2.43.0