From 769fd7182b4844242bb509d6e507bf7f5d399810 Mon Sep 17 00:00:00 2001
From: Jared Hancock <jared@osticket.com>
Date: Fri, 28 Mar 2014 14:57:45 -0500
Subject: [PATCH] Workup css for the help tips

    * Titles of other items in bold
    * Configuration options shown in italic
    * Mute the help tips when not focused
---
 scp/css/scp.css | 27 ++++++++++++++++++++++++++-
 1 file changed, 26 insertions(+), 1 deletion(-)

diff --git a/scp/css/scp.css b/scp/css/scp.css
index af47a21f7..77d55671c 100644
--- a/scp/css/scp.css
+++ b/scp/css/scp.css
@@ -1114,14 +1114,22 @@ ul.tabs li a.active {
 i.help-tip {
     vertical-align: inherit;
     color: #aaa;
+    opacity: 0.8;
 }
 i.help-tip:hover {
-    color: black;
+    color: orange !important;
     cursor: pointer;
+    opacity: 1;
 }
 
 caption > i.help-tip {
     color: white;
+    opacity: 0.2;
+}
+caption:hover > i.help-tip {
+    color: orange;
+    color: #ffc20f;
+    opacity: 1;
 }
 
 h2 > i.help-tip {
@@ -1760,3 +1768,20 @@ table.custom-info tr {
 table.custom-info td {
     border-bottom: 1px dotted rgba(0,0,0,0.3);
 }
+
+.doc-desc-title {
+    font-weight: bold;
+    text-transform: capitalize;
+}
+.doc-desc-option {
+    font-style: italic;
+}
+
+.form_table tr:hover i.help-tip {
+    opacity: 1;
+    color: #ffc20f;
+}
+
+.form_table tr i.help-tip {
+    opacity: 0.2;
+}
-- 
GitLab