-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Convert :not pseudo-class selector list to chained
#9561
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -105,7 +105,7 @@ $dropzone-stacking-order: ( | |
| } | ||
| } | ||
|
|
||
| #{$se23} &:not(.focused, .isDisabled) { | ||
| #{$se23} &:not(.focused):not(.isDisabled) { | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Tophat of the ProductDetails DropZone looks good 💯
|
||
| // the additional .isDisabled argument in this :not invocation is to ensure we don't mess up disabled styles due to specificity. | ||
| // Won't be necessary post SE23. | ||
| &::after { | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -128,11 +128,13 @@ | |
| } | ||
| } | ||
|
|
||
| &:not(.hasBulkActions, .selectMode) { | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Note: This PR updates a mainline |
||
| &:not(.hasBulkActions):not(.selectMode) { | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Tophat of ProductDetails OptionsAndVariantsCard with multi-location looks good 👍🏽
|
||
| // stylelint-disable-next-line -- generated by polaris-migrator DO NOT COPY | ||
| &::after { | ||
| border-radius: var(--p-border-radius-05); | ||
| } | ||
|
|
||
| // stylelint-disable-next-line -- generated by polaris-migrator DO NOT COPY | ||
| &:last-of-type { | ||
| border-bottom-left-radius: var(--p-border-radius-2); | ||
| border-bottom-right-radius: var(--p-border-radius-2); | ||
|
|
||


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tophat of AppIndexResourceListItem looks good 🥇