* Applied a patch sent in by David Given for handling of the "&" character
[citadel.git] / webcit / static / style.css
index adc3482ec7726220da8355a7cad82783223d1e24..12631e068b0530a4e43621ad74d89487a8458f5c 100644 (file)
@@ -13,6 +13,10 @@ a:active {
   text-decoration: none;
 }
 
+a:hover {
+  text-decoration: underline;
+}
+
 .menubar_link {
        font-family: Bitstream Vera Sans,Tahoma,Arial,Helvetica,sans-serif;
        font-size: 9pt;
@@ -55,13 +59,6 @@ a:active {
        font-style: italic;
 }
 
-.pull_quote {
-       font-family: Bitstream Vera Sans,Arial,Helvetica,sans-serif;
-       font-size: 7pt;
-       font-style: italic;
-       color: #000044;
-}
-
 .tablabel {
        font-family: Bitstream Vera Sans,Arial,Helvetica,sans-serif;
        font-size: 10pt;
@@ -123,13 +120,12 @@ a:active {
 
 .iconbar_link {
        font-family: Bitstream Vera Sans,Tahoma,Arial,Helvetica,sans-serif;
-       font-size: 9pt;
+       font-size: 7pt;
 }
 
 .powered_by {
        font-family: Bitstream Vera Sans,Arial,Helvetica,sans-serif;
-       font-size: 7pt;
-       letter-spacing: 1pt;
+       font-size: 6pt;
 }
 
 .roomlist_floor {
@@ -158,6 +154,7 @@ body {
   color: #000000;
   font-family: Bitstream Vera Sans,Arial,Helvetica,sans-serif;
   font-weight: normal;
+  font-size: 10pt;
 }
 
 h1 {
@@ -343,3 +340,65 @@ strong.legal {
   input#toggler, .toolbar { display: none }
 }
 
+<!-- begin tree view styles -->
+
+#mainMenu {
+  background-color: #EEE;
+  border: 1px solid #CCC;
+  color: #000;
+  width: 203px;
+}
+
+#menuList {
+  margin: 0px;
+  padding: 10px 0px 10px 15px;
+}
+
+li.menubar {
+  background: url(/static/plus.gif) no-repeat 0em 0.3em;
+  font-size: 12px;
+  line-height: 1.5em;
+  list-style: none outside;
+}
+
+.menu, .submenu {
+  display: none;
+  margin-left: 15px;
+  padding: 0px;
+}
+
+.menu li, .submenu li {
+  background: url(/static/square.gif) no-repeat 0em 0.3em;
+  list-style: none outside;
+}
+
+a.actuator {
+  background-color: transparent;
+  color: #000;
+  font-size: 12px;
+  padding-left: 15px;
+  text-decoration: none;
+}
+
+a.actuator:hover {
+  text-decoration: underline;
+}
+
+.menu li a, .submenu li a {
+  background-color: transparent;
+  color: #000;
+  font-size: 12px;
+  padding-left: 15px;
+  text-decoration: none;
+}
+
+.menu li a:hover, submenu li a:hover {
+  /*border-bottom: 1px dashed #000;*/
+  text-decoration: underline;
+}
+
+span.key {
+  text-decoration: underline;
+}
+
+<!-- end tree view styles -->