Skip to content

Commit

Permalink
fix(css): follow canonical order in border and outline sections (#749)
Browse files Browse the repository at this point in the history
  • Loading branch information
OnkarRuikar authored Aug 15, 2024
1 parent ab6bf8a commit b703067
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions css/properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -2453,9 +2453,9 @@
"media": "visual",
"inherited": false,
"animationType": [
"border-color",
"border-width",
"border-style",
"border-width"
"border-color"
],
"percentages": "no",
"groups": [
Expand Down Expand Up @@ -7451,31 +7451,31 @@
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/orphans"
},
"outline": {
"syntax": "[ <'outline-color'> || <'outline-style'> || <'outline-width'> ]",
"syntax": "[ <'outline-width'> || <'outline-style'> || <'outline-color'> ]",
"media": [
"visual",
"interactive"
],
"inherited": false,
"animationType": [
"outline-color",
"outline-width",
"outline-style"
"outline-style",
"outline-color"
],
"percentages": "no",
"groups": [
"CSS Basic User Interface"
],
"initial": [
"outline-color",
"outline-width",
"outline-style",
"outline-width"
"outline-color"
],
"appliesto": "allElements",
"computed": [
"outline-color",
"outline-width",
"outline-style"
"outline-style",
"outline-color"
],
"order": "orderOfAppearance",
"status": "standard",
Expand Down

0 comments on commit b703067

Please sign in to comment.