Change -webkit-transition to transition-property (#540)
As per https://developer.mozilla.org/en-US/docs/Web/CSS/@media/-webkit-transition, webkit-transition feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes.
This commit is contained in:
parent
d4886b068e
commit
16a1a77974
@ -153,7 +153,7 @@ blockquote {
|
||||
a {
|
||||
i::before {
|
||||
color: var(--global-text-color);
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
transition-property: all 0.2s ease-in-out;
|
||||
}
|
||||
&:hover {
|
||||
i::before {
|
||||
@ -220,7 +220,7 @@ blockquote {
|
||||
a {
|
||||
i::before {
|
||||
color: var(--global-text-color);
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
transition-property: all 0.2s ease-in-out;
|
||||
}
|
||||
&:hover {
|
||||
i::before {
|
||||
@ -467,7 +467,7 @@ footer.sticky-bottom {
|
||||
max-height: 0px;
|
||||
overflow: hidden;
|
||||
text-align: justify;
|
||||
-webkit-transition: 0.15s ease;
|
||||
transition-property: 0.15s ease;
|
||||
-moz-transition: 0.15s ease;
|
||||
-ms-transition: 0.15s ease;
|
||||
-o-transition: 0.15s ease;
|
||||
@ -485,7 +485,7 @@ footer.sticky-bottom {
|
||||
}
|
||||
.hidden.open {
|
||||
max-height: 100em;
|
||||
-webkit-transition: 0.15s ease;
|
||||
transition-property: 0.15s ease;
|
||||
-moz-transition: 0.15s ease;
|
||||
-ms-transition: 0.15s ease;
|
||||
-o-transition: 0.15s ease;
|
||||
|
Loading…
Reference in New Issue
Block a user