mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
This doesn't change behavior by default but allows authors to remove the padding previously enforced to align with focus ring padding, if they wish to.
18 lines
299 B
HTML
18 lines
299 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
@font-face {
|
|
font-family: "Ahem";
|
|
src: url(../../fonts/Ahem.ttf);
|
|
}
|
|
select {
|
|
-moz-appearance: none;
|
|
border: none;
|
|
font: 20px/1 Ahem;
|
|
box-sizing: content-box;
|
|
height: 40px;
|
|
padding: 0;
|
|
}
|
|
</style>
|
|
<select>
|
|
<option>X</option>
|
|
</select>
|