Support hover attribute for tables
[infodrom.org/service.infodrom.org] / src / infodrom.css
index 0eb622a..d9b6bad 100644 (file)
@@ -43,14 +43,29 @@ a:visited {
 h3.bar {
   padding-left: 5px;
   padding-bottom: 2px;
-  font-size: 15px;
+  font-size: 14px;
   background: #98c5e5;
 }
+.jsaction {
+    color: #666;
+}
 img.border {
   border: 2px solid #e5e5e5;
 }
-ul.webgraph li {
-  list-style: none;
+div.webgraph {
+  margin-left: 20px;
+  margin-bottom: 15px;
+}
+table.webgraph td {
+  border: 1px solid #CCC;
+  font-size: small;
+  text-align: center;
+}
+table.webgraph td:hover {
+  background: #DDD;
+}
+table.yellow-hover tr:hover {
+  background: yellow;
 }
 td.leftcol {
   padding-left: 2px;
@@ -59,7 +74,7 @@ td.rightcol {
   padding-right: 2px;
 }
 tr.head {
-  background: #98c5e5;
+  background: #a7ddff;
 }
 tr.t0 {
   background: #ffffff;
@@ -76,6 +91,12 @@ td.in {
 td.out {
   color: #ff0000;
 }
+.left {
+  text-align: left;
+}
+.right {
+  text-align: right;
+}
 
 pre {
   border: 1pt solid #cfcfcf;
@@ -119,6 +140,10 @@ p.menurule {
  */
 input, select, textarea {
   border: 1px solid #aaaaaa;
+  font-size: inherit;
+}
+button {
+  font-size: inherit;
 }
 input.button {
   width: auto;
@@ -130,6 +155,103 @@ input.button:hover {
   background-color: #bfbfbf;
 }
 
+/*
+ * Popups
+ */
+div.popup {
+  background: white;
+  border: 1px solid #777;
+  height: auto;
+  position: absolute;
+}
+div.popup_title {
+  top: 0px;
+  width: 100%;
+  background: #b0e2ff;
+  margin-top: -1em;
+  margin-bottom: 0px;
+  font-weight: bold;
+  padding-top: 0px;
+  padding-bottom: 1.35ex;
+  border-bottom: 1px solid #777;
+}
+div.popup_title p {
+  padding-left: 3px;
+  padding-bottom: 0px;
+  margin-bottom: -0.65em;
+  cursor: move;
+}
+div.popup_title img {
+    position: absolute;
+    right: 5px;
+    top: 3px;
+    cursor; pointer;
+}
+div.popup_body {
+  padding-left: 2px;
+  padding-right: 2px;
+  padding-bottom: 2px;
+}
+div.popup label {
+  margin-top: 2px;
+  display: block;
+}
+div.popup#errorwindow div.popup_title {
+  background: #ffa54f;
+  background: #ff3030;
+}
+div.popup#errorwindow div.popup_title p {
+  color: white;
+}
+div.popup#errorwindow div#errorbody {
+  padding: 5px;
+  font-weight: bold;
+  font-size: 110%;
+}
+div.popup#errorwindow div.popup_body {
+  background: #ffe4c4;
+}
+
+/*
+ * Calendar
+ */
+table#fc {
+  z-index: 100;
+}
+
+div.popup div.caltitle {
+    font-weight: bold;
+}
+
+/*
+ * jQuery & Co.
+ */
+div#message_div {
+    background: #ffffcd;
+    color: #555;
+    border: 1px solid limegreen;
+    font-size: 120%;
+    padding: 5px;
+}
+
+.autocomplete-suggestions {
+    background: white;
+    border-left: 1px solid #999;
+    border-right: 1px solid #999;
+    border-bottom: 1px solid #999;
+}
+.autocomplete-suggestion {
+    background: #eefaff;
+    cursor: default;
+}
+.autocomplete-suggestion:hover {
+    background: yellow;
+}
+
+[data-is-editing="1"] {
+    background: lightblue !important;
+}
+
 /*
  * Footer
  */
@@ -146,9 +268,3 @@ div.footerright {
   font-size: xx-small;
 }
 
-/*
- * Local variables:
- * mode: indented-text
- * mode: auto-fill
- * End:
-*/