Skip to content

Commit

Permalink
refactor: split up :not for less parser (#2377)
Browse files Browse the repository at this point in the history
  • Loading branch information
LuLaValva authored Jul 10, 2024
1 parent 4c15cac commit 83fc78d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/itchy-forks-shop.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@ebay/skin": patch
---

Use older CSS syntax
1 change: 1 addition & 0 deletions .stylelintrc
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
],
"rules": {
"comment-empty-line-before": null,
"selector-not-notation": null,
"no-descending-specificity": null,
"no-duplicate-selectors": null,
"rule-empty-line-before": null,
Expand Down
3 changes: 1 addition & 2 deletions dist/textbox/textbox.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions src/sass/textbox/textbox.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@

/* `.textbox--focus` should be removed after full browser support for `:has` */
.textbox--focus,
.textbox:has(> .textbox__control:focus):not(
.textbox--readonly,
.textbox:has(> .textbox__control:focus):not(.textbox--readonly):not(
:has(> .textbox__control[readonly])
) {
box-shadow: 0 0 0 1px var(--color-stroke-strong);
Expand Down

0 comments on commit 83fc78d

Please sign in to comment.