Skip to content

Commit

Permalink
Merge branch 'main' into fragment
Browse files Browse the repository at this point in the history
  • Loading branch information
jindaliiita authored May 21, 2024
2 parents 453ac5e + 9304fb1 commit fc8fc2c
Show file tree
Hide file tree
Showing 118 changed files with 7,925 additions and 5,686 deletions.
2 changes: 2 additions & 0 deletions .eslintrc.js → .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,7 @@ module.exports = {
'import/extensions': ['error', {
js: 'always',
}],
'max-len': ['error', { "code": 200 }],
'function-paren-newline': 'off',
},
};
1 change: 1 addition & 0 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ jobs:
node-version: '16' #required for npm 8 or later.
- run: npm install
- run: npm run lint
- run: npm test
env:
CI: true
3 changes: 3 additions & 0 deletions .mocharc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recursive": true
}
1 change: 1 addition & 0 deletions blocks/agent-search/builders/tags.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export const addSelectionTag = (wrapper, filter, value) => {
`;
wrapper.querySelector('.selection-tags-list').append(li);
};

/**
* Builds the Container for the search bar selections.
*
Expand Down
5 changes: 3 additions & 2 deletions blocks/header/header.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ body.light-nav {
/ 1fr min-content;
align-items: start;
overflow-y: scroll;
z-index: 50;
z-index: 1000;
}

.header.block nav[aria-expanded="true"] {
Expand Down Expand Up @@ -259,6 +259,7 @@ body.light-nav {
}

.header.block nav .nav-hamburger .open {
display: block;
position: absolute;
top: 0;
left: 0;
Expand Down Expand Up @@ -444,7 +445,7 @@ body.light-nav {
right: 0;
height: 5px;
background-color: var(--white);
z-index: 10;
z-index: 1010;
}

.header.block nav[aria-expanded="true"] .nav-sections > ul > li > ul {
Expand Down
3 changes: 0 additions & 3 deletions blocks/hero/search/agent.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@

.hero.block .agent-search .selection-tags {
position: absolute;
}

.hero.block .agent-search .selection-tags {
padding: 0;
}

Expand Down
227 changes: 0 additions & 227 deletions blocks/hero/search/home-delayed.js

This file was deleted.

8 changes: 7 additions & 1 deletion blocks/hero/search/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,16 @@
right: 0;
}

.hero.block .content .homes .filters .select-wrapper.open .selected::after {
.hero.block .content .homes .filters .select-wrapper.open > .selected::after {
content: '\f0d8';
}

.hero.block .content .homes .filters .select-wrapper .selected span {
font-size: var(--body-font-size-xs);
color: var(--input-placeholder);
}


.hero.block .content .homes .filters .select-wrapper .select-items {
display: none;
position: absolute;
Expand Down
Loading

0 comments on commit fc8fc2c

Please sign in to comment.