From 775394c809ad1ad028c85fe1ea6e99c05f4f0c8e Mon Sep 17 00:00:00 2001 From: Alexey Elin Date: Mon, 7 Dec 2020 16:51:01 +0300 Subject: [PATCH] docs: use double colon for pseudo-elements (#40004) The double colon helps to distinguish between pseudo-classes and pseudo-elements. https://developer.mozilla.org/en-US/docs/Web/CSS/Pseudo-elements PR Close #40004 --- .../examples/testing/src/app/dashboard/dashboard.component.css | 2 +- .../examples/toh-pt5/src/app/dashboard/dashboard.component.css | 2 +- .../examples/toh-pt6/src/app/dashboard/dashboard.component.css | 2 +- .../universal/src/app/dashboard/dashboard.component.css | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aio/content/examples/testing/src/app/dashboard/dashboard.component.css b/aio/content/examples/testing/src/app/dashboard/dashboard.component.css index ce7eb46e35..a10f7e0211 100644 --- a/aio/content/examples/testing/src/app/dashboard/dashboard.component.css +++ b/aio/content/examples/testing/src/app/dashboard/dashboard.component.css @@ -1,7 +1,7 @@ [class*='col-'] { float: left; } -*, *:after, *:before { +*, *::after, *::before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; diff --git a/aio/content/examples/toh-pt5/src/app/dashboard/dashboard.component.css b/aio/content/examples/toh-pt5/src/app/dashboard/dashboard.component.css index 4b7ec1c3ee..7ce1157b01 100644 --- a/aio/content/examples/toh-pt5/src/app/dashboard/dashboard.component.css +++ b/aio/content/examples/toh-pt5/src/app/dashboard/dashboard.component.css @@ -10,7 +10,7 @@ a { text-decoration: none; } -*, *:after, *:before { +*, *::after, *::before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; diff --git a/aio/content/examples/toh-pt6/src/app/dashboard/dashboard.component.css b/aio/content/examples/toh-pt6/src/app/dashboard/dashboard.component.css index 938b84b2b0..2f6736bc96 100644 --- a/aio/content/examples/toh-pt6/src/app/dashboard/dashboard.component.css +++ b/aio/content/examples/toh-pt6/src/app/dashboard/dashboard.component.css @@ -10,7 +10,7 @@ a { text-decoration: none; } -*, *:after, *:before { +*, *::after, *::before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; diff --git a/aio/content/examples/universal/src/app/dashboard/dashboard.component.css b/aio/content/examples/universal/src/app/dashboard/dashboard.component.css index 938b84b2b0..2f6736bc96 100644 --- a/aio/content/examples/universal/src/app/dashboard/dashboard.component.css +++ b/aio/content/examples/universal/src/app/dashboard/dashboard.component.css @@ -10,7 +10,7 @@ a { text-decoration: none; } -*, *:after, *:before { +*, *::after, *::before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;