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:
parent
eae07e10aa
commit
df7ed4160f
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue