Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions polaris-react/src/components/Button/Button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -911,7 +911,7 @@
}

#{$se23} &:hover,
#{$se23} &:focus:not(:active, .pressed, .disabled) {
#{$se23} &:focus:not(:active):not(.pressed):not(.disabled) {
Copy link
Member

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 🥇

Screenshot 2023-06-29 at 6 57 18 PM

color: var(--p-color-text-critical-hover-experimental);

// stylelint-disable-next-line -- se23 override
Expand Down Expand Up @@ -1020,7 +1020,7 @@
}
}

#{$se23} &:focus:not(:active, .pressed, .disabled) svg {
#{$se23} &:focus:not(:active):not(.pressed):not(.disabled) svg {
fill: var(--p-color-icon-critical-strong-experimental);
}

Expand Down
2 changes: 1 addition & 1 deletion polaris-react/src/components/DropZone/DropZone.scss
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ $dropzone-stacking-order: (
}
}

#{$se23} &:not(.focused, .isDisabled) {
#{$se23} &:not(.focused):not(.isDisabled) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tophat of the ProductDetails DropZone looks good 💯

Screenshot 2023-06-29 at 4 52 35 PM

// 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 {
Expand Down
4 changes: 3 additions & 1 deletion polaris-react/src/components/ResourceItem/ResourceItem.scss
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,13 @@
}
}

&:not(.hasBulkActions, .selectMode) {
Copy link
Member Author

@aaronccasanova aaronccasanova Jun 28, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note: This PR updates a mainline :not psuedo-class (e.g. not beta-flagged) (Screenshot in PR description)

&:not(.hasBulkActions):not(.selectMode) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tophat of ProductDetails OptionsAndVariantsCard with multi-location looks good 👍🏽

Screenshot 2023-06-29 at 6 47 24 PM

// 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);
Expand Down