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;
}
CommentFileSizeAuthor
#3 interdiff-2_3.txt516 bytesgauravvvv
#3 3338478-3.patch840 bytesgauravvvv
#2 3338478-2.patch679 bytesgauravvvv

Comments

Gauravvv created an issue. See original summary.

gauravvvv’s picture

Status: Active » Needs review
StatusFileSize
new679 bytes

I have removed the -webkit properties, Attached patch for same. please review

gauravvvv’s picture

StatusFileSize
new840 bytes
new516 bytes

Removed form one more place, added interdiff.

.entity-moderation-form__item:last-child {
  -webkit-align-self: flex-end; /* Safari */
  align-self: flex-end;
  margin-right: 0;
}
quietone’s picture

Component: Stable theme » Stable 9 theme

Moving remaining issues for 'Stable theme' to 'Stable 9 theme' based on #3332485-5: [Meta] Stable issue triage by markconroy.

smustgrave’s picture

Status: Needs review » Reviewed & tested by the community
Issue tags: +Needs Review Queue Initiative

Searching the theme css folder for "/* Safari */", "-webkit-flex-wrap", and "display: -webkit-flex;" using phpstorm all the instances have been addressed.

lauriii’s picture

Component: Stable 9 theme » content_moderation.module
Status: Reviewed & tested by the community » Needs work

We should also fix this in core/modules/content_moderation/css/content_moderation.module.css since that's the root cause.

lauriii’s picture

Status: Needs work » Closed (duplicate)