fix(calendar): <li>-Disc-Marker (Punkt) auf iOS/WebKit entfernen
Punkt links der Datums-Kachel war der event-item <li>-Marker, nicht der
summary-Disclosure-Marker. list-none am <ul> wird von globaler Typo-Regel
überschrieben → list-style:none + ::marker{content:""} direkt auf .event-item.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1352,10 +1352,16 @@
|
|||||||
}
|
}
|
||||||
.calendar-block .event-item {
|
.calendar-block .event-item {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
list-style: none;
|
||||||
border-left: 4px solid transparent;
|
border-left: 4px solid transparent;
|
||||||
background: var(--color-stein-0, #fff);
|
background: var(--color-stein-0, #fff);
|
||||||
transition: background-color 150ms ease;
|
transition: background-color 150ms ease;
|
||||||
}
|
}
|
||||||
|
/* iOS/WebKit zeigt sonst den <li>-Disc-Marker (dunkler Punkt links der
|
||||||
|
Kachel) — list-none am <ul> greift wegen globaler Typo-Regel nicht. */
|
||||||
|
.calendar-block .event-item::marker {
|
||||||
|
content: "";
|
||||||
|
}
|
||||||
.calendar-block .event-item + .event-item {
|
.calendar-block .event-item + .event-item {
|
||||||
border-top: 1px solid var(--color-stein-200, #e0dcd5);
|
border-top: 1px solid var(--color-stein-200, #e0dcd5);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user