From 91fb830c86a94f66315b21287f5bebf4d2d8011a Mon Sep 17 00:00:00 2001 From: Alexey Elin Date: Thu, 10 Dec 2020 17:36:29 +0300 Subject: [PATCH] docs: remove prefixed border-radius related properties (#40066) Angular has stopped to support browser that requires these CSS properties. All supported browsers support standard CSS properties: * border-radius * border-bottom-left-radius * border-bottom-right-radius PR Close #40066 --- .../ajs-quick-reference/src/app/movie-list.component.css | 6 ------ 1 file changed, 6 deletions(-) diff --git a/aio/content/examples/ajs-quick-reference/src/app/movie-list.component.css b/aio/content/examples/ajs-quick-reference/src/app/movie-list.component.css index a3d5bf8161..d635cff06a 100644 --- a/aio/content/examples/ajs-quick-reference/src/app/movie-list.component.css +++ b/aio/content/examples/ajs-quick-reference/src/app/movie-list.component.css @@ -11,8 +11,6 @@ table { margin:20px; border:#ccc 1px solid; - -moz-border-radius:3px; - -webkit-border-radius:3px; border-radius:3px; } table th { @@ -46,12 +44,8 @@ table tr:last-child td { border-bottom:0; } table tr:last-child td:first-child { - -moz-border-radius-bottomleft:3px; - -webkit-border-bottom-left-radius:3px; border-bottom-left-radius:3px; } table tr:last-child td:last-child { - -moz-border-radius-bottomright:3px; - -webkit-border-bottom-right-radius:3px; border-bottom-right-radius:3px; }