138466997afeed868f4265c70bd950ef75a643c6 hiram Wed Aug 21 12:04:23 2024 -0700 advanced search hoptions now hidden by default and allow debug flag to turn on API url reference refs #32596 diff --git src/hg/htdocs/style/assemblySearch.css src/hg/htdocs/style/assemblySearch.css index b7e8f3b..0dabe32 100644 --- src/hg/htdocs/style/assemblySearch.css +++ src/hg/htdocs/style/assemblySearch.css @@ -59,32 +59,33 @@ /* border: 8px solid #f3f3f3; light grey border-top: 8px solid #3498db; blue */ .submitContainer.loading button { opacity: 0.5; } /* Spinner animation */ @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } /* CSS styles to position radio button groups */ +/* display will be flex to show this box on 'show advanced search options' */ .radioGroupContainer { - display: flex; /* Use flexbox to align items horizontally */ + display: none; /* Use flexbox to align items horizontally */ gap: 20px; /* Optional: Add space between the two groups */ border: 2px solid #000; /* Add a 2px solid black border around the container */ padding: 10px; /* Optional: Add padding inside the border */ } .radioGroup { display: flex; flex-direction: column; /* Arrange radio buttons vertically */ } .radioGroup:last-child { align-items: center; justify-content: flex-end; /* Aligns the radio button and label to the right */ margin-left: auto; /* Push the second group to the right */ }