]> code.citadel.org Git - citadel.git/blobdiff - webcit/static/head.html
* The previous <div style=\"margin-right:1px\"> has been replaced by a
[citadel.git] / webcit / static / head.html
index c53e1123e31624bbf94f2ca1e2a8822fd8e5ae1d..82f7aeed274a01d25ccf2fba66635ab146d3416a 100644 (file)
@@ -3,8 +3,7 @@
 <html>
 <head>
 <?REFRESHTAG>
-<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
-<title>Citadel: <?SERV_HUMANNODE></title>
+<title><?SERV_HUMANNODE></title>
 <meta http-equiv="Pragma" content="no-cache" />
 <meta http-equiv="expired" content="28-May-1971 18:10:00 GMT" />
 <meta name="MSSmartTagsPreventParsing" content="TRUE" />
@@ -16,7 +15,6 @@
 
 body {
        margin:0;
-       margin-right: 1px;
        padding: 0 0 0 0;
        height: 100%;
        overflow: auto;
@@ -32,9 +30,9 @@ body {
        display:block;
        top:0px;
        left:0px;
-       width: 10%;
+       width: 15%;
        height:100%;
-       background:transparent;
+       background: #eeeecc;
 }
 
 * html #iconbar {
@@ -42,17 +40,17 @@ body {
        display:block;
        top:0px;
        left:0px;
-       width: 10%;
+       width: 15%;
        height:100%;
-       background:transparent;
+       background: #ffffff;
 }
 
 #banner {
        position:fixed;
        display:block;
        top:0px;
-       left: 10%;
-       width: 90%;
+       left: 15%;
+       width: 85%;
        height: 15%;
        background: #444455;
 }
@@ -61,30 +59,89 @@ body {
        position:absolute;
        display:block;
        top:0px;
-       left: 10%;
-       width: 90%;
+       left: 15%;
+       width: 85%;
        height: 15%;
        background: #444455;
 }
 
+#page_popup {
+       position:absolute;
+       width=600px;
+       height=400px;
+       background-color: #880000;
+       z-index: 2;
+}
+
 #content {
        position:fixed;
        display:block;
        top: 15%;
-       left: 10%;
-       width: 90%;
+       left: 15%;
+       width: 85%;
        height: 85%;
        overflow: auto;
+       /* overflow-x: hidden; */
 }
 
 * html #content {
        position:absolute;
        display:block;
        top: 15%;
-       left: 10%;
-       width: 90%;
+       left: 15%;
+       width: 85%;
        height: 85%;
        overflow: auto;
+       /* overflow-x: hidden; */
+}
+
+#fix_scrollbar_bug {
+       margin-right:1px;               /* Gecko */
+       width: expression('97%');       /* Only IE6 understands 'expression' and it also has the weird scrollbarbug */
+}
+
+#button {
+       width: 100%;
+       padding: 0 0 1em 0;
+       margin-bottom: 1em;
+       background-color: #eeeecc;
+       color: #aaaaaa;
+       font-size: 8pt;
+}
+
+#button ul {
+       list-style: none;
+       margin: 0;
+       padding: 0;
+       border: none;
+}
+
+#button li {
+       border-bottom: 1px solid #aaaaaa;
+       margin: 0;
+}
+
+#button img {
+       vertical-align: middle;
+       padding-left: 2px;
+       padding-right: 5px;
+}
+
+#button li a {
+       display: block;
+       background-color: #eeeecc;
+       color: #000000;
+       text-decoration: none;
+       width: 100%;
+}
+
+html>body #button li a {
+       width: auto;
+}
+
+#button li a:hover {
+       background-color: #ddddff;
+       color: #000000;
 }
 
 a:link {
@@ -174,7 +231,7 @@ a:hover {
 }
 
 .room_banner_room_info {
-       font-size: 10pt;
+       font-size: 6pt;
        color: #FFFFEE;
 }
 
@@ -192,14 +249,6 @@ a:hover {
        background-color: #FF0000;
 }
 
-.iconbar_link {
-       font-size: 7pt;
-}
-
-.powered_by {
-       font-size: 6pt;
-}
-
 .roomlist_floor {
        font-size: 12pt;
        font-weight: bold;
@@ -248,6 +297,7 @@ var sub {
 .errormsg {
        color: #AA0000;
        background: none;
+       font-weight: bold;
        font-style: italic;
 }
 
@@ -316,12 +366,6 @@ td li.frameset, .elements li.frameset {
        background: none;
 }
 
-.footer, .checkedDocument {
-       margin-top: 2em;
-       padding-top: 1em;
-       border-top: solid thin black;
-}
-
 @media print {
        input#toggler, .toolbar { display: none }
 }
@@ -388,5 +432,26 @@ span.key {
 <!-- end tree view styles -->
 
 </style>
-<?PAGERSCRIPT>
+
+<script language="JavaScript">
+
+var browserType;
+
+if (document.layers) {browserType = "nn4"}
+if (document.all) {browserType = "ie"}
+if (window.navigator.userAgent.toLowerCase().match("gecko")) {browserType= "gecko"}
+
+function hide_page_popup() {
+  if (browserType == "gecko" )
+     document.poppedLayer = eval('document.getElementById(\'page_popup\')');
+  else if (browserType == "ie")
+     document.poppedLayer = eval('document.all[\'page_popup\']');
+  else
+     document.poppedLayer = eval('document.layers[\'`page_popup\']');
+  document.poppedLayer.style.visibility = "hidden";
+}
+
+</script>
+
 </head>
+<body>