fix(css): hide summary::marker for Firefox + list-style:none on li (Safari)

This commit is contained in:
Hermes
2026-06-05 17:24:30 +00:00
parent acaea97415
commit 3b4c73425a

View File

@@ -1510,6 +1510,10 @@ footer {
display: none; display: none;
} }
.locale-switcher__trigger::marker {
content: "";
}
.locale-switcher__trigger:hover, .locale-switcher__trigger:hover,
.locale-switcher__trigger:focus-visible { .locale-switcher__trigger:focus-visible {
background: rgb(0 0 0 / 6%); background: rgb(0 0 0 / 6%);
@@ -1532,6 +1536,11 @@ footer {
transform: rotate(180deg); transform: rotate(180deg);
} }
.locale-switcher__menu,
.locale-switcher__menu li {
list-style: none;
}
.locale-switcher__menu { .locale-switcher__menu {
position: absolute; position: absolute;
top: calc(100% + 6px); top: calc(100% + 6px);
@@ -1539,7 +1548,6 @@ footer {
min-width: 180px; min-width: 180px;
margin: 0; margin: 0;
padding: 6px; padding: 6px;
list-style: none;
background: var(--white); background: var(--white);
border: 1px solid var(--warm); border: 1px solid var(--warm);
border-radius: 10px; border-radius: 10px;