Stable: Remove webkit-specific display flex from CSS

Created on 2 February 2023, over 1 year ago
Updated 20 February 2023, over 1 year ago

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;
}
📌 Task
Status

Closed: duplicate

Version

10.1

Component
Content moderation 

Last updated about 14 hours ago

Created by

🇮🇳India gauravvvv Delhi, India

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024