8cb0587b8d832eff7322c595c8547e4655569119
max
  Mon Oct 18 07:22:55 2021 -0700
fixing LOVD otto job, also must check for total size, I forgot at the time the most basic check. No redmine yet, email from Bob

diff --git src/hg/htdocs/style/hgHubConnect.css src/hg/htdocs/style/hgHubConnect.css
index 041e884..0629b84 100644
--- src/hg/htdocs/style/hgHubConnect.css
+++ src/hg/htdocs/style/hgHubConnect.css
@@ -1,41 +1,64 @@
 /* 
    Style Sheet for hgHubConnect
-   by Greg Roe                   
-   Last update: 2011-7-18 (greg)   
 */
 
+ul {
+        margin: 4px;
+}
+
 #tabs {
 	font-size: 100%;
 	margin-top: 5px;
 }
 
+.tabSection {
+        /* background: #fffee8; */
+        padding-top: 10px;
+        padding-left: 8px;
+        padding-bottom: 10px;
+        border-bottom: 1px solid grey;
+}
+
+.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button, button {
+        font-size: 80%;
+}
+
+h4 {
+        margin: 0px;
+        padding-top: 4px;
+        padding-bottom: 4px;
+}
+
+
+
 .hubList table {
     width: 1000px;
     border-collapse: collapse;
 }
 
 /* Creating rounded corners at the tops of tables - works with all CSS3 supporting browsers, degrades gracefully */
 .hubList table tr:first-child th:first-child {-webkit-border-top-left-radius: 5px; -moz-border-radius-topleft: 5px; border-top-left-radius: 5px;}
 .hubList table tr:first-child th:last-child {-webkit-border-top-right-radius: 5px; -moz-border-radius-topright: 5px; border-top-right-radius: 5px;}
 
 /* Styling table cells */
 .hubList tbody 	{font-size: 0.9em;}
 .hubList table tr td:first-child {text-align: center;}
 .hubList table#unlistedHubsTable tr td:last-child {text-align: center;}
 .hubList th, .hubList td {padding: 2px 8px; text-align: left;}
 .hubList th {background-color: #e5dfb1; height: 1.6em; vertical-align: middle;}
+.hubList th .assemblyClickNote { font-size: 80%; font-weight: normal; display: block }
 
 .hubList table tbody tr {background-color: #fffef8;}
 .hubTdbTree {font-size: 0.9em;}
 .descriptionMatch {font-size: 0.9em;}
 .selectedRow {background-color: #99dd9a !important;}
 .hoverRow {background-color: #fdffb7 !important;}
 .hubList td {border-top: 1px solid #d5cd9e; border-bottom: 1px solid #d5cd9e;}
 .centeredCol {text-align: center;}
 #addHubBar {background-color: #bfbfb2; line-height: 2.3em;}
 #hubURL {line-height: 0.9em; color: #1c1d22;}
 .hubList input {margin: 3px; font-size: 0.8em;}
 .submitHub {margin: 10px;}
 
 .tabFooter {
     font-size: 100%;
@@ -48,71 +71,45 @@
 }
 .tabFooter .small {margin: 2px 40px; font-size: 0.8em;}
 
 .hubError {color: #F00000;}
 
 // hub developer tab settings
 #hubDeveloper {
     width: 1000px;
 }
 
 #hubDeveloperInstructions {
     width: 1000px;
     text-align: center;
 }
 
-.roundCorners {
-    -webkit-border-top-left-radius: 5px;
-    -moz-border-radius-topleft: 5px;
-    border-top-left-radius: 5px;
-    -webkit-border-top-right-radius: 5px;
-    -moz-border-radius-topright: 5px;
-    border-top-right-radius: 5px;
+
+.help {
+    /* font-size: 0.9em; */
+    padding-top: 8px;
+    padding-bottom: 8px;
 }
 
 .addHubBar {
     width: 1000px;
     background-color: #bfbfb2;
     line-height: 2.3em;
     padding: 2px 8px;
     text-align: left;
     height: auto;
 }
 
 
 #extraSettingsContainer {
     display: inline-block;
     line-height: 1.5em;
     position: relative;
     vertical-align: middle;
 }
 
 #extraSettingsContainer > img {
     vertical-align: middle;
     height: 18;
     cursor: pointer;
 }
 
-.tooltip {
-    position: relative;
-    display: inline-block;
-    border-bottom: 1px dotted black;
-}
-
-.tooltip .tooltiptext {
-    visibility: hidden;
-    background-color: lightgray;
-    text-align: center;
-    position: absolute;
-    z-index: 1;
-    opacity: 0;
-    width: 220px;
-    padding: 5px;
-    left: 105%;
-    transition: opacity .6s;
-    line-height: 1em;
-}
-
-.tooltip:hover .tooltiptext {
-    visibility: visible;
-    opacity: .9;
-}