update EarlyBlue to trunk
[themes.git] / EarlyBlue / global / formatting.css
index ec9732a602cd295e4859ee1147793979f2b7e349..ea8e3993b8aec68a070c3fdf0de307cf53c3a2e9 100644 (file)
   border: 1px inset #CCD0DD;
   margin: 0px 5px 5px 5px;
 }
-  
+
+.box-inset {
+  margin: 2px 4px;
+  border: 1px inset #CCD0DD;
+  background-color: #FFFFFF;
+  color: #000000;
+}
+
 /* formatting */
 .groove-top {
   border-top: 2px groove #CCD0DD;  
@@ -167,3 +174,26 @@ label {
 .caption-text {
   margin: 0px 2px 0px 1px !important;
 }
+
+/* class for text with a 'link' appearance */
+.text-link {
+  color: blue;
+  text-decoration: underline;
+}
+
+.text-link:focus {
+  color: red;
+  outline: 1px dotted invert;
+}
+
+.text-link:hover {
+  cursor: pointer;
+}
+
+.text-link:hover:active {
+  color: red;
+}
+
+.text-link[visited="true"] {
+  color: purple;
+}