docs: remove -webkit-transition-timing-function CSS property (#40153)

Angular has stopped to support browser that requires that CSS property.
All supported browsers support standard transition-timing-function CSS property

PR Close #40153
This commit is contained in:
Alexey Elin 2020-12-16 21:15:09 +03:00 committed by Joey Perrott
parent eae07e10aa
commit df7ed4160f
1 changed files with 0 additions and 2 deletions

View File

@ -125,7 +125,6 @@ button.vertical-menu-item {
padding-left: 0; padding-left: 0;
max-height: 4000px; // Arbitrary max-height. Can increase if needed. Must have measurement to transition height. max-height: 4000px; // Arbitrary max-height. Can increase if needed. Must have measurement to transition height.
transition: visibility 500ms, opacity 500ms, max-height 500ms; transition: visibility 500ms, opacity 500ms, max-height 500ms;
-webkit-transition-timing-function: ease-in-out;
transition-timing-function: ease-in-out; transition-timing-function: ease-in-out;
} }
@ -136,7 +135,6 @@ button.vertical-menu-item {
opacity: 0; opacity: 0;
max-height: 1px; // Must have measurement to transition height. max-height: 1px; // Must have measurement to transition height.
transition: visibility 275ms, opacity 275ms, max-height 280ms; transition: visibility 275ms, opacity 275ms, max-height 280ms;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out; transition-timing-function: ease-out;
} }
} }