Skip to content

Commit 189c599

Browse files
authored
remove references to rgba and hsla (#382)
1 parent 680e648 commit 189c599

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

cssdb.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@
742742
"docs": {
743743
"mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-within"
744744
},
745-
"example": "form:focus-within {\n background: rgba(0, 0, 0, 0.3);\n}",
745+
"example": "form:focus-within {\n background: rgb(0 128 0);\n}",
746746
"interoperable_at": 1579046400,
747747
"polyfills": [
748748
{
@@ -1133,7 +1133,7 @@
11331133
"docs": {
11341134
"mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/:in-range"
11351135
},
1136-
"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}",
1136+
"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}",
11371137
"interoperable_at": 1447286400,
11381138
"vendors_implementations": 3
11391139
},

cssdb.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ export default [
742742
"docs": {
743743
"mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-within"
744744
},
745-
"example": "form:focus-within {\n background: rgba(0, 0, 0, 0.3);\n}",
745+
"example": "form:focus-within {\n background: rgb(0 128 0);\n}",
746746
"interoperable_at": 1579046400,
747747
"polyfills": [
748748
{
@@ -1133,7 +1133,7 @@ export default [
11331133
"docs": {
11341134
"mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/:in-range"
11351135
},
1136-
"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}",
1136+
"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}",
11371137
"interoperable_at": 1447286400,
11381138
"vendors_implementations": 3
11391139
},

cssdb.settings.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -219,9 +219,7 @@
219219
"stage": 2,
220220
"mdn_path": [
221221
"css.types.color.hsl.space_separated_parameters",
222-
"css.types.color.hsla.space_separated_parameters",
223-
"css.types.color.rgb.space_separated_parameters",
224-
"css.types.color.rgba.space_separated_parameters"
222+
"css.types.color.rgb.space_separated_parameters"
225223
],
226224
"browser_support": {},
227225
"docs": {
@@ -533,7 +531,7 @@
533531
"docs": {
534532
"mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-within"
535533
},
536-
"example": "form:focus-within {\n background: rgba(0, 0, 0, 0.3);\n}",
534+
"example": "form:focus-within {\n background: rgb(0 128 0);\n}",
537535
"mdn_path": "css.selectors['focus-within']",
538536
"polyfills": [
539537
{
@@ -807,7 +805,7 @@
807805
"mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/:in-range"
808806
},
809807
"mdn_path": "css.selectors['in-range']",
810-
"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}"
808+
"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}"
811809
},
812810
{
813811
"id": "is-pseudo-class",

0 commit comments

Comments
 (0)