From 8c7dfbb7a8da49b4568f0cf00b5560ef1021c970 Mon Sep 17 00:00:00 2001 From: Scott Baker Date: Wed, 5 Nov 2014 22:10:37 -0800 Subject: [PATCH] split wholePage site from insert Site --- .../core/xoslib/dashboards/xosAdminSite.html | 2 +- .../xoslib/static/css/xosAdminWholePage.css | 110 ++++++++++++++++++ 2 files changed, 111 insertions(+), 1 deletion(-) create mode 100644 planetstack/core/xoslib/static/css/xosAdminWholePage.css diff --git a/planetstack/core/xoslib/dashboards/xosAdminSite.html b/planetstack/core/xoslib/dashboards/xosAdminSite.html index ec37300..30f3509 100644 --- a/planetstack/core/xoslib/dashboards/xosAdminSite.html +++ b/planetstack/core/xoslib/dashboards/xosAdminSite.html @@ -5,6 +5,7 @@ + @@ -29,7 +30,6 @@ nav
-
diff --git a/planetstack/core/xoslib/static/css/xosAdminWholePage.css b/planetstack/core/xoslib/static/css/xosAdminWholePage.css new file mode 100644 index 0000000..a280fac --- /dev/null +++ b/planetstack/core/xoslib/static/css/xosAdminWholePage.css @@ -0,0 +1,110 @@ +.test-table td, th { + border: 1px solid black; +} +.objectLink { + cursor:pointer; + color:blue; + text-decoration:underline; +} +#logTable td, th { + border: 1px solid black; +} + +#navigationPanel { + position: absolute; + top: 100px; + left: 0; + width: 220px; + bottom: 0; + overflow: hidden; + //background-color: #F0F0F0; +} + +#headerPanel { + position: absolute; + top: 0; + left: 0; + right: 0; + width: auto; + height: 100px; + overflow: hidden; + //background-color: #F0E0E0; +} + +#logPanel { + position: absolute; + top: auto; + left: 220px; + right: 0; + bottom: 0; + width: auto; + height: 100px; + overflow: hidden; + //background-color: #F0E0E0; +} + +#contentPanel { + position: fixed; + top: 100px; + bottom: 100px; + left: 220px; + right: 0; + overflow: auto; + //background: #f0F0E0; +} + +.btn-xosnav { + width: 120px; +} + +.xos-nav-list { + list-style:none; + border-bottom-style: solid; + border-bottom-color: #105E9E; + color: #105E93; + margin: 0px 4px 15px 5px; +} + +.xos-nav-item { + background-color: #E0E0E0; + border-top-left-radius: 3px; + border-top-right-radius: 3px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + + display: inline-block; + content: normal; + clear: none; + + padding:8px 20px 7px; + + font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; + font-size: 13px; + font-weight: bold; + color: #105E9E; + border: none; + box-shadow: none; + cursor: pointer; +} + +.xos-nav-item:hover { + background-color: #A0A0A0; + letter-spacing: 1px; +} + +.xos-nav-item.active { + background-color: #105E9E; + color:#ffffff; + font-weight:normal; + padding-top:10px; + text-decoration:none; +} + +.xos-list-title { + display: none; +} + +.xos-detail-title { + display: none; +} + -- 2.43.0