elad2412 / the-new-css-reset

The New Simple and Lighter CSS Reset
https://elad2412.github.io/the-new-css-reset/
MIT License
2.26k stars 229 forks source link

Remove list-style on <summary> #53

Closed idesmar closed 1 year ago

idesmar commented 2 years ago

Issue#52 -- Remove list-style on summary

m0dh4x commented 2 years ago

to set the list-style to none for summary element will not work as expected. this will remove the triangle or dot for chromium supported browsers but not for webkit browsers (KHTML library) like safari.

elad2412 commented 1 year ago

Update in version 1.8.1 for ::marker psuedo selector remove bullet.

The fix:

/* remove default dot (•) sign */
::marker {
    content: "";
}

Let me know if you any comment on this :-)