Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into css-color-mixed_type_…
Browse files Browse the repository at this point in the history
…parameters--compassionate-doberman-pinscher-ca52eda42d
  • Loading branch information
romainmenke committed Feb 23, 2024
2 parents 28004fb + 189c599 commit d0c4ca5
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 16 deletions.
4 changes: 2 additions & 2 deletions cssdb.json
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
"docs": {
"mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-within"
},
"example": "form:focus-within {\n background: rgba(0, 0, 0, 0.3);\n}",
"example": "form:focus-within {\n background: rgb(0 128 0);\n}",
"interoperable_at": 1579046400,
"polyfills": [
{
Expand Down Expand Up @@ -1120,7 +1120,7 @@
"docs": {
"mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/:in-range"
},
"example": "input:in-range {\n background-color: rgba(0, 255, 0, 0.25);\n}\ninput:out-of-range {\n background-color: rgba(255, 0, 0, 0.25);\n border: 2px solid red;\n}",
"example": "input:in-range {\n background-color: rgb(0 255 0 / 0.25);\n}\ninput:out-of-range {\n background-color: rgb(255 0 0 / 0.25);\n border: 2px solid red;\n}",
"interoperable_at": 1447286400,
"vendors_implementations": 3
},
Expand Down
4 changes: 2 additions & 2 deletions cssdb.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@ export default [
"docs": {
"mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-within"
},
"example": "form:focus-within {\n background: rgba(0, 0, 0, 0.3);\n}",
"example": "form:focus-within {\n background: rgb(0 128 0);\n}",
"interoperable_at": 1579046400,
"polyfills": [
{
Expand Down Expand Up @@ -1120,7 +1120,7 @@ export default [
"docs": {
"mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/:in-range"
},
"example": "input:in-range {\n background-color: rgba(0, 255, 0, 0.25);\n}\ninput:out-of-range {\n background-color: rgba(255, 0, 0, 0.25);\n border: 2px solid red;\n}",
"example": "input:in-range {\n background-color: rgb(0 255 0 / 0.25);\n}\ninput:out-of-range {\n background-color: rgb(255 0 0 / 0.25);\n border: 2px solid red;\n}",
"interoperable_at": 1447286400,
"vendors_implementations": 3
},
Expand Down
10 changes: 3 additions & 7 deletions cssdb.settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -223,12 +223,8 @@
"mdn_path": [
"css.types.color.hsl.mixed_type_parameters",
"css.types.color.hsl.space_separated_parameters",
"css.types.color.hsla.mixed_type_parameters",
"css.types.color.hsla.space_separated_parameters",
"css.types.color.rgb.mixed_type_parameters",
"css.types.color.rgb.space_separated_parameters",
"css.types.color.rgba.mixed_type_parameters",
"css.types.color.rgba.space_separated_parameters"
"css.types.color.rgb.space_separated_parameters"
],
"browser_support": {},
"docs": {
Expand Down Expand Up @@ -540,7 +536,7 @@
"docs": {
"mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-within"
},
"example": "form:focus-within {\n background: rgba(0, 0, 0, 0.3);\n}",
"example": "form:focus-within {\n background: rgb(0 128 0);\n}",
"mdn_path": "css.selectors['focus-within']",
"polyfills": [
{
Expand Down Expand Up @@ -817,7 +813,7 @@
"mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/:in-range"
},
"mdn_path": "css.selectors['in-range']",
"example": "input:in-range {\n background-color: rgba(0, 255, 0, 0.25);\n}\ninput:out-of-range {\n background-color: rgba(255, 0, 0, 0.25);\n border: 2px solid red;\n}"
"example": "input:in-range {\n background-color: rgb(0 255 0 / 0.25);\n}\ninput:out-of-range {\n background-color: rgb(255 0 0 / 0.25);\n border: 2px solid red;\n}"
},
{
"id": "is-pseudo-class",
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"devDependencies": {
"@mdn/browser-compat-data": "^5.5.10",
"browserslist": "^4.22.3",
"caniuse-lite": "^1.0.30001585",
"caniuse-lite": "^1.0.30001588",
"glob": "^10.3.7",
"lodash.get": "^4.4.2",
"postcss": "^8.4.35",
Expand Down

0 comments on commit d0c4ca5

Please sign in to comment.