Actions
Bug #71589
closedFix wrong compiled css
Status:
Closed
Priority:
Must have
Assignee:
Category:
Backend User Interface
Target version:
Start date:
2015-11-16
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
7
PHP Version:
5.6
Tags:
Complexity:
no-brainer
Is Regression:
No
Sprint Focus:
Updated by Gerrit Code Review about 9 years ago
- Status changed from In Progress to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/44728
Updated by Andreas Kienast about 9 years ago
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.
Updated by Josef Glatz about 9 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 3990699299c29258848ef7a97ee6099361162325.
Actions