fix tenant view causes minidashboard to be partially obscured
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 @@
<script src="{{ STATIC_URL }}/js/vendor/backbone.marionette.js"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css">
-<link rel="stylesheet" type="text/css" href="{% static 'css/xosAdminDashboard.css' %}" media="all" >
+<link rel="stylesheet" type="text/css" href="{% static 'css/xosTenantDashboard.css' %}" media="all" >
<link rel="stylesheet" type="text/css" href="{% static 'css/xosAdminSite.css' %}" media="all" >
<script src="{{ STATIC_URL }}/js/xoslib/xos-util.js"></script>
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;
+}