Issue #3056372: Primary dropbutton style update.
2 unresolved threads
Closes #3056372
Merge request reports
Activity
41 41 .field-actions .dropbutton-wrapper { 42 42 margin-block: var(--space-xs); 43 43 margin-inline: 0 var(--space-m); 44 margin: var(--space-m) var(--space-m) var(--space-m) 0; changed this line in version 3 of the diff
63 64 list-style: none; 64 65 } 65 66 67 .dropbutton--primary .dropbutton__toggle { 68 background: var(--button-bg-color--primary); 69 } 70 71 .dropbutton--primary .dropbutton__toggle::before { 72 background: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.2384999,1.9384769 1.646703,0.5166019 7.0002189,5.8193359 12.353735,0.5166019 13.761938,1.9384769 7.0002189,8.635742Z' fill='white'/%3E%3C/svg%3E") no-repeat center; 73 } 74 - Comment on lines +70 to +74
Take a look at the toggle styling elsewhere in this file and you'll notice
- The svgs are not base64'd, they pull in a file
background: url(../../images/icons/000f33/chevron-down.svg)
. In the transpiled version they will be automatically converted to base 64 - Nested selectors are used
These additions should be consistent with that.
- The svgs are not base64'd, they pull in a file
Please register or sign in to reply