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
27043ee
feat(system-time): add SystemTime type and update resolvers for syste…
elibosley Oct 9, 2025
8d4ff99
feat(activation): enhance activation modal with timezone selection an…
elibosley Oct 9, 2025
794e32f
test(activation): update tests for activation modal and steps
elibosley Oct 9, 2025
ba5f74c
feat(activation): add Plugins Step to activation process
elibosley Oct 10, 2025
5365229
fix(emcmd): improve error logging for CSRF token retrieval
elibosley Oct 10, 2025
e4456f2
feat(upgrade): implement upgrade onboarding system for Unraid OS
elibosley Oct 10, 2025
09b4de8
feat(activation): enhance ActivationPluginsStep and update tests
elibosley Oct 10, 2025
5ed6ff4
feat(api-config): enhance ApiConfigPersistence with shutdown handling
elibosley Oct 10, 2025
36e0070
feat(api-config): integrate OS version tracking with new OsVersionTra…
elibosley Oct 13, 2025
4876a29
feat(onboarding): implement upgrade step completion tracking
elibosley Oct 13, 2025
fcd1fa0
refactor(api-schema): reorganize RClone types in generated schema
elibosley Oct 13, 2025
693bc07
feat(onboarding): update OnboardingTracker to support dynamic OS vers…
elibosley Oct 13, 2025
4e0b831
feat: onboarding flows simplified
elibosley Oct 13, 2025
2f64e33
refactor(activation): update activation components for improved local…
elibosley Oct 14, 2025
1f31506
test(activation): enhance ActivationCodeModal tests with Vue app inte…
elibosley Oct 14, 2025
09c1421
fix: pnpm lock
elibosley Oct 14, 2025
df8c096
refactor(onboarding): remove unnecessary fields from UpgradeStep type
elibosley Oct 14, 2025
cc830e6
refactor(system-time): integrate ConfigService for state management
elibosley Oct 14, 2025
77d9a68
feat(onboarding): add permissions for completing upgrade steps
elibosley Oct 14, 2025
0022871
test(customization): add test for omitting upgrade metadata with inco…
elibosley Oct 14, 2025
c56c3fd
refactor(activation): remove unused i18n import from WelcomeModal com…
elibosley Oct 14, 2025
56cfc87
feat(config): enhance config parsing and state management
elibosley Oct 14, 2025
11b541f
feat(onboarding): implement upgrade marker for version tracking
elibosley Oct 15, 2025
4165575
feat(onboarding): enhance version tracking and upgrade marker handling
elibosley Oct 15, 2025
c7c9a35
Merge branch 'main' into feat/timezone-control
elibosley Oct 15, 2025
9cbfc6f
feat(onboarding): implement first boot completion tracking in Onboard…
elibosley Oct 15, 2025
b5d084b
fix(log): update time format in logging configuration
elibosley Oct 15, 2025
e6b42d9
refactor(activation): clean up ActivationModal component and remove u…
elibosley Oct 15, 2025
dca7ae5
feat(activation): enhance upgrade step handling in ActivationModal
elibosley Oct 15, 2025
0a9620b
feat(activation): add titles, descriptions, and icons to upgrade step…
elibosley Oct 15, 2025
a4b4757
feat(plugin): implement plugin installation tracking and management
elibosley Oct 15, 2025
a2d9d7a
feat(activation): enhance plugin installation flow and UI feedback
elibosley Oct 15, 2025
771840c
fix(plugins): refine error and success handling during plugin install…
elibosley Oct 16, 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