00a364772e6004ac5d9d221c0594121063791471 chmalee Mon Oct 7 09:50:38 2024 -0700 After meeting with QA, start small redesign to emphasize getting a track uploaded. Change the file selector to be in a modal, make the newest files sort to top and be highlighted, add a batch change file type and db, auto-detect the db from the cart diff --git src/hg/htdocs/style/hgMyData.css src/hg/htdocs/style/hgMyData.css new file mode 100644 index 0000000..4083f22 --- /dev/null +++ src/hg/htdocs/style/hgMyData.css @@ -0,0 +1,31 @@ +#fileList { + display: grid; + grid-template-columns: 20px 2fr 1fr 1fr 1fr; + column-gap: 2px; +} + +.fileListHeader { + display: none; +} + +.batchTypeSelect { + grid-column-start: 3; +} + +.batchDbSelect { + grid-column-start: 4; +} + +.button { + background-color: #E8E8E8; + padding: 5px 10px; + border-radius: 5px; + border: 1px ridge black; + font-size: 0.8rem; +} + +.pickedFiles { +} +.pickedFile { + font-size: smaller; +}