We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The colors used on the /integrations page within the dashboard do not follow the pattern used in /workspaces list.
/integrations
/workspaces
Change label and heading colors for the dark theme in /integrations page.
The following changes could suffice:
diff --git a/components/dashboard/src/settings/Integrations.tsx b/components/dashboard/src/settings/Integrations.tsx index d0a33f39f..7dc77e760 100644 --- a/components/dashboard/src/settings/Integrations.tsx +++ b/components/dashboard/src/settings/Integrations.tsx @@ -291,15 +291,15 @@ function GitProviders() { </ItemFieldIcon> <ItemField className="w-4/12 xl:w-3/12 flex flex-col"> <span className="my-auto font-medium truncate overflow-ellipsis">{ap.authProviderType}</span> - <span className="text-sm my-auto text-gray-400 truncate overflow-ellipsis">{ap.host}</span> + <span className="text-sm my-auto text-gray-400 truncate overflow-ellipsis dark:text-gray-500">{ap.host}</span> </ItemField> <ItemField className="w-6/12 xl:w-3/12 flex flex-col"> - <span className="my-auto truncate text-gray-500 overflow-ellipsis">{getUsername(ap.authProviderId) || "–"}</span> - <span className="text-sm my-auto text-gray-400">Username</span> + <span className="my-auto truncate text-gray-500 overflow-ellipsis dark:text-gray-400">{getUsername(ap.authProviderId) || "–"}</span> + <span className="text-sm my-auto text-gray-400 dark:text-gray-500">Username</span> </ItemField> <ItemField className="hidden xl:w-5/12 xl:flex xl:flex-col"> - <span className="my-auto truncate text-gray-500 overflow-ellipsis">{getPermissions(ap.authProviderId)?.join(", ") || "–"}</span> - <span className="text-sm my-auto text-gray-400">Permissions</span> + <span className="my-auto truncate text-gray-500 overflow-ellipsis dark:text-gray-400">{getPermissions(ap.authProviderId)?.join(", ") || "–"}</span> + <span className="text-sm my-auto text-gray-400 dark:text-gray-500">Permissions</span> </ItemField> <ItemFieldContextMenu menuEntries={gitProviderMenu(ap)} /> </Item> @@ -375,7 +375,7 @@ function GitIntegrations() { <div className="flex items-start sm:justify-between mb-2"> <div> <h3>Git Integrations</h3> - <h2 className="text-gray-500">Manage Git integrations for GitLab or GitHub self-hosted instances.</h2> + <h2>Manage Git integrations for GitLab or GitHub self-hosted instances.</h2> </div> {providers.length !== 0 ?
The text was updated successfully, but these errors were encountered:
issue up for grab?
Sorry, something went wrong.
Absolutely, @pri1311! 🏀
pri1311
Successfully merging a pull request may close this issue.
Problem to solve
The colors used on the
/integrations
page within the dashboard do not follow the pattern used in/workspaces
list.Proposal
Change label and heading colors for the dark theme in
/integrations
page.The following changes could suffice:
The text was updated successfully, but these errors were encountered: