All the modern browsers support display: flex and other related properties. We don't need -webkit-flex anymore.
Ref: https://caniuse.com/flexbox
.entity-moderation-form {
display: -webkit-flex; /* Safari */
display: flex;
-webkit-flex-wrap: wrap; /* Safari */
flex-wrap: wrap;
-webkit-align-items: flex-start; /* Safari */
align-items: flex-start;
list-style: none;
}Proposed resolution:
Remove these properties:
.entity-moderation-form {
- display: -webkit-flex; /* Safari */
display: flex;
- -webkit-flex-wrap: wrap; /* Safari */
flex-wrap: wrap;
- -webkit-align-items: flex-start; /* Safari */
align-items: flex-start;
list-style: none;
}| Comment | File | Size | Author |
|---|---|---|---|
| #3 | interdiff-2_3.txt | 516 bytes | gauravvvv |
| #3 | 3338478-3.patch | 840 bytes | gauravvvv |
| #2 | 3338478-2.patch | 679 bytes | gauravvvv |
Comments
Comment #2
gauravvvv commentedI have removed the -webkit properties, Attached patch for same. please review
Comment #3
gauravvvv commentedRemoved form one more place, added interdiff.
Comment #4
quietone commentedMoving remaining issues for 'Stable theme' to 'Stable 9 theme' based on #3332485-5: [Meta] Stable issue triage by markconroy.
Comment #5
smustgrave commentedSearching the theme css folder for "/* Safari */", "-webkit-flex-wrap", and "display: -webkit-flex;" using phpstorm all the instances have been addressed.
Comment #6
lauriiiWe should also fix this in
core/modules/content_moderation/css/content_moderation.module.csssince that's the root cause.Comment #7
lauriiiThis is duplicate of #3338552: Remove webkit properties from content moderation.