Bug #71589
closed
Added by Josef Glatz about 9 years ago.
Updated about 6 years ago.
Category:
Backend User Interface
Description
Problem/Description¶
Seems like there went anything wrong while generating css in an earlier commit OR the grunt tasks have updated dependencies..
How to reproduce¶
cd typo3_src/Build && npm install && grunt bower_install && grunt css
- Status changed from In Progress to Under Review
Originally, we have this CSS definition by Bootstrap: webkit-transition: -webkit-transform .6s ease-in-out
. PostCSS creates this CSS definition: transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
.
When we break the new definition down in separate parts, we have this: transition: -webkit-transform 0.6s ease-in-out;
So we basically get another definition as is already defined by Bootstrap, probably necessary for some mobile Safari stuff, so I'm fine with this change.
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
- Status changed from Resolved to Closed
Also available in: Atom
PDF