Skip to content
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

fix: place vendor-prefixed props first in declaration order #2812

Merged
merged 3 commits into from
Jul 18, 2024
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
13 changes: 0 additions & 13 deletions live-examples/css-examples/animation/animation-delay.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,6 @@
animation-direction: alternate;
}

@-webkit-keyframes slide {
from {
background-color: orange;
color: black;
margin-left: 0;
}
to {
background-color: orange;
color: black;
margin-left: 80%;
}
}

@keyframes slide {
from {
background-color: orange;
Expand Down
13 changes: 0 additions & 13 deletions live-examples/css-examples/animation/animation-direction.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,6 @@
font-size: 2rem;
}

@-webkit-keyframes slide {
from {
background-color: orange;
color: black;
margin-left: 0;
}
to {
background-color: orange;
color: black;
margin-left: 80%;
}
}

@keyframes slide {
from {
background-color: orange;
Expand Down
13 changes: 0 additions & 13 deletions live-examples/css-examples/animation/animation-duration.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,6 @@
font-size: 2rem;
}

@-webkit-keyframes slide {
from {
background-color: orange;
color: black;
margin-left: 0;
}
to {
background-color: orange;
color: black;
margin-left: 80%;
}
}

@keyframes slide {
from {
background-color: orange;
Expand Down
13 changes: 0 additions & 13 deletions live-examples/css-examples/animation/animation-fill-mode.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,6 @@
animation: slide 1s ease-in 1;
}

@-webkit-keyframes slide {
from {
background-color: orange;
color: black;
margin-left: 0;
}
to {
background-color: orange;
color: black;
margin-left: 80%;
}
}

@keyframes slide {
from {
background-color: orange;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,6 @@
animation-timing-function: ease-in;
}

@-webkit-keyframes slide {
from {
background-color: orange;
color: black;
margin-left: 0;
}
to {
background-color: orange;
color: black;
margin-left: 80%;
}
}

@keyframes slide {
from {
background-color: orange;
Expand Down
26 changes: 0 additions & 26 deletions live-examples/css-examples/animation/animation-name.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,6 @@
width: 150px;
}

@-webkit-keyframes slide {
from {
background-color: orange;
color: black;
margin-left: 0;
}
to {
background-color: orange;
color: black;
margin-left: 80%;
}
}

@keyframes slide {
from {
background-color: orange;
Expand All @@ -39,19 +26,6 @@
}
}

@-webkit-keyframes bounce {
from {
background-color: orange;
color: black;
margin-bottom: 0;
}
to {
background-color: orange;
color: black;
margin-bottom: 40%;
}
}

@keyframes bounce {
from {
background-color: orange;
Expand Down
13 changes: 0 additions & 13 deletions live-examples/css-examples/animation/animation-play-state.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,6 @@
animation-direction: alternate;
}

@-webkit-keyframes slide {
from {
background-color: orange;
color: black;
margin-left: 0;
}
to {
background-color: orange;
color: black;
margin-left: 80%;
}
}

@keyframes slide {
from {
background-color: orange;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,6 @@
font-size: 2rem;
}

@-webkit-keyframes slide {
from {
background-color: orange;
color: black;
margin-left: 0;
}
to {
background-color: orange;
color: black;
margin-left: 80%;
}
}

@keyframes slide {
from {
background-color: orange;
Expand Down
9 changes: 0 additions & 9 deletions live-examples/css-examples/animation/animation.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,6 @@
border-radius: 50%;
}

@-webkit-keyframes slidein {
from {
margin-left: -20%;
}
to {
margin-left: 100%;
}
}

@keyframes slidein {
from {
margin-left: -20%;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@

<div class="example-choice">
<pre><code class="language-css">background-clip: text;
-webkit-background-clip: text;
color: transparent;</code></pre>
<button type="button" class="copy hidden" aria-hidden="true">
<span class="visually-hidden">Copy to Clipboard</span>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
<section
id="example-choice-list"
class="example-choice-list"
data-property="box-decoration-break -webkit-box-decoration-break">
data-property="-webkit-box-decoration-break box-decoration-break">
<div class="example-choice">
<pre><code class="language-css">box-decoration-break: slice;
-webkit-box-decoration-break: slice;</code></pre>
<pre><code class="language-css">-webkit-box-decoration-break: slice;
box-decoration-break: slice;
</code></pre>
<button type="button" class="copy hidden" aria-hidden="true">
<span class="visually-hidden">Copy to Clipboard</span>
</button>
</div>

<div class="example-choice">
<pre><code class="language-css">box-decoration-break: clone;
-webkit-box-decoration-break: clone;</code></pre>
<pre><code class="language-css">-webkit-box-decoration-break: clone;
box-decoration-break: clone;</code></pre>
<button type="button" class="copy hidden" aria-hidden="true">
<span class="visually-hidden">Copy to Clipboard</span>
</button>
Expand Down
6 changes: 1 addition & 5 deletions live-examples/css-examples/pseudo-class/autofill.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ label {
margin-top: 1em;
}

input:autofill {
border: 3px solid darkorange;
}

input:-webkit-autofill {
input:is(:-webkit-autofill, :autofill) {
border: 3px solid darkorange;
}
Loading