update EarlyBlue to trunk
[themes.git] / EarlyBlue / global / formatting.css
index a2fbd6aa74d665f64a915c444b2a7f1738ce59ae..ea8e3993b8aec68a070c3fdf0de307cf53c3a2e9 100644 (file)
@@ -174,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;
+}