Problem/Motivation

Duplication of selectors might indicate a copy-paste mistake. Unexpected duplicate selector ".js .draggable:hover .paragraphs-collapsed-description:after", first used at line 61.

File: paragraphs/css/paragraphs.admin.css

.js .draggable:hover .paragraphs-collapsed-description:after,
.js .draggable:hover .paragraphs-collapsed-description:after {
  background: #f7fcff;
  background: linear-gradient(to right, rgba(247, 252, 255, 0) 0%, #f7fcff 100%);
}

Proposed resolution

.js .draggable:hover .paragraphs-collapsed-description:after {
  background: #f7fcff;
  background: linear-gradient(to right, rgba(247, 252, 255, 0) 0%, #f7fcff 100%);
}
CommentFileSizeAuthor
#6 after-patch.png67.74 KBchetansonawane
#6 before-patch.png72.24 KBchetansonawane

Issue fork paragraphs-3306140

Command icon Show commands

Start within a Git clone of the project using the version control instructions.

Or, if you do not have SSH keys set up on git.drupalcode.org:

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

fnalb2 created an issue. See original summary.

immaculatexavier made their first commit to this issue’s fork.

immaculatexavier’s picture

Status: Active » Needs review

Committed in accordance to the proposed resolution

chetansonawane’s picture

Assigned: Unassigned » chetansonawane
chetansonawane’s picture

Assigned: chetansonawane » Unassigned
Status: Needs review » Reviewed & tested by the community
FileSize
72.24 KB
67.74 KB

I have checked the given MR diff and applied it and duplicate selector is now removed, css merged under single selector.