Avoid loading default radio input icon for preview size buttons

pull/12626/head^2
Sage Abdullah 2024-11-15 10:55:41 +00:00 zatwierdzone przez LB (Ben Johnston)
rodzic 836b8138d3
commit 6ec4dafc6a
1 zmienionych plików z 7 dodań i 0 usunięć

Wyświetl plik

@ -198,5 +198,12 @@
width: 0;
height: 0;
opacity: 0;
// Remove mask-image from radio inputs to avoid loading the default icon,
// use extra specificity to beat the default styles
&:is(input[type='radio'])::before {
content: none;
mask-image: none;
}
}
}