Skip to content

Commit

Permalink
handle code review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Goodwine committed Sep 27, 2024
1 parent 8c21418 commit d0def70
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 30 deletions.
31 changes: 2 additions & 29 deletions spec/core_functions/selector/unify/compound.hrx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ a {b: selector.unify("::c.d", "::c.d")}

<===> full_overlap/pseudo_element/class_after/output.css
a {
b: .d::c;
b: ::c.d;
}

<===>
Expand All @@ -48,25 +48,9 @@ a {b: selector.unify("::c.d", ".d::c")}

<===> full_overlap/pseudo/different_order/output.css
a {
b: .d::c;
b: ::c.d;
}

<===>
================================================================================
<===> multiple_pseudo_elements/first_argument/input.scss
@use "sass:selector";
a {b: selector.unify("::y::z", ".x")}

<===> multiple_pseudo_elements/first_argument/output.css

<===>
================================================================================
<===> multiple_pseudo_elements/second_argument/input.scss
@use "sass:selector";
a {b: selector.unify(".x", "::y::z")}

<===> multiple_pseudo_elements/second_argument/output.css

<===>
================================================================================
<===> order/preserved_by_default/input.scss
Expand Down Expand Up @@ -195,14 +179,3 @@ a {b: selector.unify(":foo", "::bar:baz")}
a {
b: :foo::bar:baz;
}

<===>
================================================================================
<===> order/cross_pseudo_element/input.scss
@use "sass:selector";
a {b: selector.unify(".x", "::y.z")}

<===> order/cross_pseudo_element/output.css
a {
b: .x.z::y;
}
2 changes: 1 addition & 1 deletion spec/libsass-closed-issues/issue_2289.hrx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
}

<===> output.css
.foo:baz:baz, .bar:baz {
.foo:baz:baz, .bar:baz:baz {
float: left;
}

0 comments on commit d0def70

Please sign in to comment.