fc3472e7e9978eb81e3ac14e985bf27e5196ab73
kate
  Fri Jul 24 10:58:01 2020 -0700
Recommended track sets feature. refs #25601

diff --git src/hg/htdocs/style/HGStyle.css src/hg/htdocs/style/HGStyle.css
index 800cdda..ce717e9 100644
--- src/hg/htdocs/style/HGStyle.css
+++ src/hg/htdocs/style/HGStyle.css
@@ -933,15 +933,39 @@
 }
 
 a:link img.sessionThumbnail {
   padding: 5px;
 }
 
 input[type="submit"].pressed {
     background: #d0dcff; 
     webkit-box-shadow: inset 0 1px 4px rgba(0,0,0,0.6);
     moz-box-shadow: inset 0 1px 4px rgba(0,0,0,0.6);
     box-shadow: inset 0 1px 4px rgba(0,0,0,0.6);
     text-shadow: 0 -1px 0 rgba(0,0,0,0.2);
     border-radius: 4px;
 }
 
+/* Session label in a box */
+
+span.gbSessionLabelPanel {
+    background-color: #e0e0e0;
+    border-style: solid;
+    border-color: #c2c2c2;
+    border-width: 1px;
+    padding: 3px;
+    padding-top: 1px;
+    margin-left: 10px;
+    cursor: default;
+}
+
+span.gbSessionLabelPanel:hover {
+      background-color: #d4d4d4;
+}
+
+span.gbSessionLabelText {
+    color: darkblue;
+}
+
+span.gbSessionChanged {
+    color: darkslategray !important;
+}