Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
4575d3f
feat(system-time): add SystemTime type and update resolvers for syste…
elibosley Oct 9, 2025
091c29d
feat(activation): enhance activation modal with timezone selection an…
elibosley Oct 9, 2025
620942b
test(activation): update tests for activation modal and steps
elibosley Oct 9, 2025
3c6a268
feat(activation): add Plugins Step to activation process
elibosley Oct 10, 2025
a3ffbd0
fix(emcmd): improve error logging for CSRF token retrieval
elibosley Oct 10, 2025
b700af1
feat(upgrade): implement upgrade onboarding system for Unraid OS
elibosley Oct 10, 2025
4f68734
feat(activation): enhance ActivationPluginsStep and update tests
elibosley Oct 10, 2025
fc60436
feat(api-config): enhance ApiConfigPersistence with shutdown handling
elibosley Oct 10, 2025
100cc34
feat(api-config): integrate OS version tracking with new OsVersionTra…
elibosley Oct 13, 2025
c28c585
feat(onboarding): implement upgrade step completion tracking
elibosley Oct 13, 2025
bd3ebcd
refactor(api-schema): reorganize RClone types in generated schema
elibosley Oct 13, 2025
8f25fd0
feat(onboarding): update OnboardingTracker to support dynamic OS vers…
elibosley Oct 13, 2025
c80ab27
feat: onboarding flows simplified
elibosley Oct 13, 2025
2a8ffe6
refactor(activation): update activation components for improved local…
elibosley Oct 14, 2025
7438d6e
test(activation): enhance ActivationCodeModal tests with Vue app inte…
elibosley Oct 14, 2025
ae715f0
fix: pnpm lock
elibosley Oct 14, 2025
03273c8
refactor(onboarding): remove unnecessary fields from UpgradeStep type
elibosley Oct 14, 2025
34753ea
refactor(system-time): integrate ConfigService for state management
elibosley Oct 14, 2025
de6c467
feat(onboarding): add permissions for completing upgrade steps
elibosley Oct 14, 2025
5fffd2f
test(customization): add test for omitting upgrade metadata with inco…
elibosley Oct 14, 2025
638cabd
refactor(activation): remove unused i18n import from WelcomeModal com…
elibosley Oct 14, 2025
3e8c5ab
feat(config): enhance config parsing and state management
elibosley Oct 14, 2025
859926b
feat(onboarding): implement upgrade marker for version tracking
elibosley Oct 15, 2025
cb1603b
feat(onboarding): enhance version tracking and upgrade marker handling
elibosley Oct 15, 2025
6dcc95c
feat(onboarding): implement first boot completion tracking in Onboard…
elibosley Oct 15, 2025
5db4401
fix(log): update time format in logging configuration
elibosley Oct 15, 2025
56c3e47
refactor(activation): clean up ActivationModal component and remove u…
elibosley Oct 15, 2025
2f9fe6d
feat(activation): enhance upgrade step handling in ActivationModal
elibosley Oct 15, 2025
4abd607
feat(activation): add titles, descriptions, and icons to upgrade step…
elibosley Oct 15, 2025
b1441a4
feat(plugin): implement plugin installation tracking and management
elibosley Oct 15, 2025
a77b9b4
feat(activation): enhance plugin installation flow and UI feedback
elibosley Oct 15, 2025
fff807b
fix(plugins): refine error and success handling during plugin install…
elibosley Oct 16, 2025
a88e9b8
feat(activation): improve plugin installation status handling and UI …
elibosley Nov 10, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion @tailwind-shared/css-variables.css
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
--ui-text-toned: var(--ui-color-neutral-300);
--ui-text: var(--ui-color-neutral-200);
--ui-text-highlighted: white;
--ui-text-inverted: var(--ui-color-neutral-900);
--ui-text-inverted: var(--ui-color-neutral-300);

Comment on lines 96 to 98
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

Restore contrast for inverted text in dark mode.

Switching --ui-text-inverted to var(--ui-color-neutral-300) makes inverted text nearly indistinguishable on its paired --ui-bg-inverted (still white), breaking readability and failing WCAG contrast. Keep a dark value (e.g., var(--ui-color-neutral-900)) for inverted text.

🤖 Prompt for AI Agents
In @tailwind-shared/css-variables.css around lines 96 to 98, the variable
--ui-text-inverted was changed to var(--ui-color-neutral-300) which reduces
contrast against the inverted background (still white); revert or set
--ui-text-inverted to a dark neutral (for example var(--ui-color-neutral-900))
so inverted text remains dark and meets WCAG contrast requirements. Ensure the
selected value provides sufficient contrast with --ui-bg-inverted (white) and
update the variable accordingly.

/* Nuxt UI Design Tokens - Background (Dark) */
--ui-bg: var(--ui-color-neutral-900);
Expand Down
Loading
Loading