Problem/Motivation
Unexpected duplicate selector ".dropbutton-wrapper.open .dropbutton__toggle::before" and double "margin-top" with different values, first used at line 208.
Line: 208
.dropbutton-wrapper.open .dropbutton__toggle::before {
margin-top: calc(0.5625rem / (2 * 1.41429));
transform: translate(50%, -50%) rotate(315deg);
}
...
Line: 225
.dropbutton-wrapper.open .dropbutton__toggle::before {
margin-top: calc(0.4375rem / (2 * 1.41429));
}
Steps to reproduce
File: core/themes/claro/css/components/dropbutton.pcss.css
Proposed resolution
Line: 208
.dropbutton-wrapper.open .dropbutton__toggle::before {
margin-top: calc(0.4375rem / (2 * 1.41429));
transform: translate(50%, -50%) rotate(315deg);
}
Remaining tasks
no
User interface changes
no
API changes
no
Data model changes
no
Release notes snippet
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | 3376474-3.patch | 1.68 KB | _utsavsharma |
| #3 | interdiff_3.txt | 0 bytes | _utsavsharma |
Comments
Comment #2
cilefen commentedComment #3
_utsavsharma commentedPatch fixing the issue.
Please review.
Comment #4
smustgrave commentedShould be covered in https://www.drupal.org/project/drupal/issues/3376458