Skip to content

Commit

Permalink
Merge branch 'develop' into feature-3813/add-new-filter
Browse files Browse the repository at this point in the history
  • Loading branch information
felipeelia authored Jan 31, 2025
2 parents 1d4f032 + 95726c4 commit d3df3dc
Show file tree
Hide file tree
Showing 46 changed files with 279 additions and 259 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,4 @@ jobs:
run: composer install

- name: PHPCS check
run: './vendor/bin/phpcs . -q --report=checkstyle --warning-severity=6 --runtime-set testVersion 7.4- | cs2pr'
run: './vendor/bin/phpcs . -q --report=checkstyle --runtime-set testVersion 7.4- | cs2pr'
29 changes: 14 additions & 15 deletions .stylelintrc
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
{
"extends": [
"@10up/stylelint-config"
],
"rules": {
"scale-unlimited/declaration-strict-value": [
"/color/",
{
"ignoreValues": ["currentColor", "inherit", "initial", "transparent", "unset"],
"severity": "warning"
}
],
"font-family-no-missing-generic-family-keyword": null,
"declaration-property-unit-allowed-list": null,
"at-rule-disallowed-list": null
}
"extends": [
"@10up/stylelint-config"
],
"rules": {
"scale-unlimited/declaration-strict-value": [
"/color/",
{
"ignoreValues": ["currentcolor", "inherit", "initial", "transparent", "unset"],
"severity": "warning"
}
],
"font-family-no-missing-generic-family-keyword": null,
"declaration-property-unit-allowed-list": null
}

}
12 changes: 7 additions & 5 deletions assets/css/autosuggest.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
@import "./global/colors.css";

.ep-autosuggest-container {
position: relative;

& .ep-autosuggest {
background: #fff;
border: 1px solid #ccc;
background: var(--ep-c-white);
border: 1px solid var(--ep-c-white-gray);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
display: none;
position: absolute;
Expand All @@ -19,14 +21,14 @@
font-family: sans-serif;

& > a.autosuggest-link {
color: #000;
color: var(--ep-c-black);
cursor: pointer;
display: block;
padding: 2px 10px;

&:hover,
&:active {
background-color: #eee;
background-color: var(--ep-c-medium-white);
text-decoration: none;
}
}
Expand All @@ -35,7 +37,7 @@
}

& .selected {
background-color: #eee;
background-color: var(--ep-c-medium-white);
text-decoration: none;
}
}
Loading

0 comments on commit d3df3dc

Please sign in to comment.