fix: Position History shows white background — inconsistent with Active Positions #9
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
The Position History section has a white/light background making text unreadable, while Active Positions uses a dark background that matches the app theme.
Reported in codeberg#1194.
Root cause
CollapseActive.vueoverrides the FCollapse background with a hardcoded dark color:CollapseHistory.vuedoes NOT override the background — it inherits from FCollapse which usesvar(--color-collapse-bg). In the default/light theme, this resolves to white.Fix
Add the same dark background override to
CollapseHistory.vueso it matchesCollapseActive.vue.Files
web-app/src/components/collapse/CollapseHistory.vue— missing background override