Spiffier UI: Team dropdown, back to teams (#3343)

This commit is contained in:
RachelElysia 2021-12-13 14:40:32 -08:00 committed by GitHub
parent c491616eb5
commit 1e37080a31
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 3 deletions

View file

@ -72,6 +72,7 @@ describe(
// Queries pages: Can create, edit, and run query
cy.visit("/queries/manage");
cy.wait(1000); // eslint-disable-line cypress/no-unnecessary-waiting
// cy.get("thead").within(() => {
// cy.findByText(/observer can run/i).should("exist");
// });
@ -114,7 +115,7 @@ describe(
// Packs pages: Can create, edit, delete a pack
cy.visit("/packs/manage");
cy.wait(1000); // eslint-disable-line cypress/no-unnecessary-waiting
cy.findByRole("button", { name: /create new pack/i }).click();
cy.findByLabelText(/name/i).click().type("Errors and crashes");

View file

@ -13,12 +13,19 @@
}
}
.Select-menu {
padding-right: $pad-small; // moves scrollbar to edge of dropdown
padding-bottom: $pad-medium;
}
.Select-menu-outer {
position: absolute;
width: 330px;
min-width: 125px;
left: -12px;
top: 36px;
border-radius: 6px;
padding-right: 0;
}
.Select-control {
@ -39,14 +46,18 @@
.Select-arrow-zone {
height: 32px;
padding-left: $pad-small;
padding-left: 15px;
.Select-arrow {
top: 2px !important;
top: 0 !important;
margin-top: 0 !important;
}
}
.is-open > .Select-arrow {
top: 0 !important;
}
.Select-multi-value-wrapper {
width: max-content; // move select arrow
height: 20px;

View file

@ -19,6 +19,7 @@
color: $core-vibrant-blue;
font-weight: $bold;
text-decoration: none;
margin: $pad-medium 0;
}
#back-chevron {