diff --git a/CHANGELOG.md b/CHANGELOG.md index 45d0180f1..67efb0747 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.10.1] + +### Fixed + +- WP-778: Fix infinite loop for state update in useEffect (#1019) +- Quick: CSS regression fixes- testing session (#1018) + ## [3.10.0] ### Added @@ -1134,7 +1141,8 @@ WP-306: Fix target path regression (#871) ## [1.0.0] - 2020-02-28 v1.0.0 Production release as of Feb 28, 2020. -[unreleased]: https://github.com/TACC/Core-Portal/compare/v3.10.0...HEAD +[unreleased]: https://github.com/TACC/Core-Portal/compare/v3.10.1...HEAD +[3.10.1]: https://github.com/TACC/Core-Portal/releases/tag/v3.10.1 [3.10.0]: https://github.com/TACC/Core-Portal/releases/tag/v3.10.0 [3.9.0]: https://github.com/TACC/Core-Portal/releases/tag/v3.9.0 [3.8.2]: https://github.com/TACC/Core-Portal/releases/tag/v3.8.2 diff --git a/client/src/components/DataFiles/DataFilesProjectMembers/DataFilesProjectMembers.module.scss b/client/src/components/DataFiles/DataFilesProjectMembers/DataFilesProjectMembers.module.scss index 69f6d645e..5a6e16afb 100644 --- a/client/src/components/DataFiles/DataFilesProjectMembers/DataFilesProjectMembers.module.scss +++ b/client/src/components/DataFiles/DataFilesProjectMembers/DataFilesProjectMembers.module.scss @@ -20,7 +20,6 @@ } .member-search { - margin-bottom: 1em; font-size: 12px !important; } diff --git a/client/src/styles/components/dropdown-menu.css b/client/src/styles/components/dropdown-menu.css index 11f47044d..3a8cb8040 100644 --- a/client/src/styles/components/dropdown-menu.css +++ b/client/src/styles/components/dropdown-menu.css @@ -20,7 +20,6 @@ Styleguide Components.Dropdown .dropdown-menu::before, .dropdown-menu::after { position: absolute; - top: -10px; left: 65px; border-right: 10px solid transparent; border-bottom: 10px solid var(--global-color-accent--normal); @@ -28,7 +27,11 @@ Styleguide Components.Dropdown margin-left: 20px; content: ''; } + .dropdown-menu::before { + top: -10px; + } .dropdown-menu::after { + top: -9px; border-bottom-color: var(--global-color-primary--xx-light); }