mirror of
https://github.com/banisterious/obsidian-charted-roots.git
synced 2026-07-22 06:40:24 +00:00
fix: Separate the toggle and remove button in the Extract events modal (#768)
This commit is contained in:
parent
8af31faae4
commit
de376a6d24
2 changed files with 5 additions and 0 deletions
|
|
@ -21,6 +21,7 @@ when 1.0 ships, GEDCOM round-trip API, BRAT vs. Community Plugins), see
|
|||
- **Map year-range filter works on fictional maps** ([#765](https://github.com/banisterious/obsidian-charted-roots/issues/765)): the Map view's "From year" / "To year" filters were number-only, so a fictional-era value like "10 ABY" or "896 BBY" couldn't be entered — and a bare number was compared against the signed canonical years fictional events resolve to, which filtered every event off a fictional map. The fields now accept era dates and resolve them the same way the events do (a plain number still works for real-world maps), so year-range filtering behaves the same on fictional and real-world maps. Reported by [@DigitalDreamn](https://github.com/DigitalDreamn).
|
||||
- **Place timeline margin and calendar-filter names** ([#766](https://github.com/banisterious/obsidian-charted-roots/issues/766)): the Place timeline card on the Control Center's Maps tab had its left/right padding zeroed, so the place picker and event rows rode the left edge instead of lining up with the surrounding cards — the horizontal margin is restored to match. The calendar filter dropdown (on the place and person timelines) also showed each calendar's internal id (e.g. `star_wars_out_of_universe_calendar`); it now shows the calendar's display name, falling back to a readable form of the id for any unnamed calendar. Reported by [@DigitalDreamn](https://github.com/DigitalDreamn).
|
||||
- **Place hierarchy legend updates with the "Color by" mode** ([#767](https://github.com/banisterious/obsidian-charted-roots/issues/767)): in the Place hierarchy visualization (Maps tab → View hierarchy), switching "Color by" between Category, Place type, and Depth recolored the chart but left the legend showing the Category colors. The legend now rebuilds to match the selected mode. The control row (Layout / Color by / Show migrations) is also vertically centered now, so the Layout control no longer sits higher than the others. Reported by [@DigitalDreamn](https://github.com/DigitalDreamn).
|
||||
- **Extract events modal no longer overlaps the toggle and remove button** ([#768](https://github.com/banisterious/obsidian-charted-roots/issues/768)): in the "Extract events from source" modal, each event's "Include this event" toggle sat directly underneath the remove (X) button in the top-right corner. The header now reserves space for the X, so the toggle and button no longer overlap. Reported by [@DigitalDreamn](https://github.com/DigitalDreamn).
|
||||
|
||||
## [0.22.75] - 2026-06-23
|
||||
|
||||
|
|
|
|||
|
|
@ -264,6 +264,10 @@
|
|||
|
||||
.crc-extract-event-header {
|
||||
margin-bottom: var(--size-4-2);
|
||||
|
||||
/* Reserve room on the right for the absolutely-positioned remove (X) button,
|
||||
so the "Include this event" toggle doesn't sit underneath it (#768). */
|
||||
padding-right: var(--size-4-8);
|
||||
}
|
||||
|
||||
.crc-extract-event-header .setting-item {
|
||||
|
|
|
|||
Loading…
Reference in a new issue