mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
Spiffier UI: Team dropdown, back to teams (#3343)
This commit is contained in:
parent
c491616eb5
commit
1e37080a31
3 changed files with 16 additions and 3 deletions
|
|
@ -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");
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@
|
|||
color: $core-vibrant-blue;
|
||||
font-weight: $bold;
|
||||
text-decoration: none;
|
||||
margin: $pad-medium 0;
|
||||
}
|
||||
|
||||
#back-chevron {
|
||||
|
|
|
|||
Loading…
Reference in a new issue