Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ENG-4486] Styling new search page + facet filters and cards #1940

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
663e179
Resolving merge conflicts.
chth0n1x Aug 21, 2023
ca403bc
Updated styling for pagination, result type uppercase text transform.
chth0n1x Aug 17, 2023
6d352a0
Resolving merge conflicts.
chth0n1x Aug 18, 2023
c688ae5
Moved button styling for see more facet filters close button for styl…
chth0n1x Aug 18, 2023
db0ae3f
Updated help button index value selector to named local class selector.
chth0n1x Aug 18, 2023
49913a7
Updated button child selector to named local class selector.
chth0n1x Aug 18, 2023
8ee6b63
Updated margin for search count, removed capitalization for parent co…
chth0n1x Aug 18, 2023
3eab0de
Moved scope of the sort option dropdown's styling to be within its lo…
chth0n1x Aug 18, 2023
c8ccf57
Updated sort dropdown div structure in template, updated styles for d…
chth0n1x Aug 18, 2023
86d2ccb
Updated mobile stylings, added background color to main body, updated…
chth0n1x Aug 20, 2023
f0befae
Updated mobile selector for help button, added padding for longer tex…
chth0n1x Aug 21, 2023
805b979
Updated padding for left panel, updated result counter padding, font …
chth0n1x Aug 21, 2023
021351e
Improved layout for no results, one result, no properties, max height…
chth0n1x Aug 21, 2023
bfb3704
Updated stylings for browser client re-sizings between mobile and ful…
chth0n1x Aug 22, 2023
876e7f4
Updated button styling for search button, updated background color to…
chth0n1x Aug 22, 2023
7caf492
Moved sort dropdown outside of nav element, removed unnecessary styli…
chth0n1x Aug 22, 2023
1a1943d
Updated sort dropdown styling to use align items property.
chth0n1x Aug 22, 2023
8fa565b
Removed sidenav toggle styling, removed justify content property, upd…
chth0n1x Aug 23, 2023
3290789
Removed name field capitalization.
chth0n1x Aug 23, 2023
e3640a5
Updated result card template for upstream changes.
chth0n1x Aug 23, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,18 @@
justify-content: space-between;
max-height: 15vh;
overflow-y: auto;

border-bottom: 1px solid #ddd;
}

.Heading {
padding: 1rem 0.75rem 1rem 1.25rem;
margin: 0;

color: $color-text-gray-blue;
font-size: 24px;
font-weight: 600;
}

.CloseButton.CloseButton {
align-self: flex-start;
margin: 10px;
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
.facet-wrapper {
border-top: 1px solid $color-border-gray;
padding: 0.5rem 0;
}

.facet-wrapper:not(:first-of-type) {
chth0n1x marked this conversation as resolved.
Show resolved Hide resolved
border-top: 1px solid $color-border-gray;
}

chth0n1x marked this conversation as resolved.
Show resolved Hide resolved
.facet-expand-button {
display: flex;
justify-content: space-between;
Expand All @@ -15,21 +18,21 @@
}

.facet-list {
padding: 0;
margin: 0;
list-style: none;
max-height: 300px;
overflow-y: auto;
margin: 0;
padding: 0.2rem;

&.collapsed {
display: none;
}
}

.facet-value {
margin: 10px 0;
display: flex;
justify-content: space-between;
margin: 10px 0;

.facet-link {
margin: 0 5px;
Expand Down
Loading
Loading