forked from argoproj/argo-cd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(UI): Added link for docs to add clusters (argoproj#17395)
* cluster-add-link Signed-off-by: Surajyadav <[email protected]> * docs Signed-off-by: Surajyadav <[email protected]> * docs-panel Signed-off-by: Surajyadav <[email protected]> * added Signed-off-by: Surajyadav <[email protected]> * fixed Signed-off-by: Surajyadav <[email protected]> --------- Signed-off-by: Surajyadav <[email protected]>
- Loading branch information
1 parent
ed0218f
commit 5ada5c2
Showing
2 changed files
with
68 additions
and
3 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
ui/src/app/settings/components/clusters-list/cluster-list.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
@import 'node_modules/argo-ui/src/styles/config'; | ||
@import 'node_modules/argo-ui/src/styles/theme'; | ||
|
||
|
||
.help-text { | ||
color: $argo-color-gray-8; | ||
@include themify($themes) { | ||
color: themed('text-2'); | ||
} | ||
a { | ||
color: #007bff; /* Blue color for the link */ | ||
@include themify($themes) { | ||
color: themed('light-argo-teal-7'); | ||
} | ||
text-decoration: none; /* Remove default underline */ | ||
transition: color 0.3s ease; /* Smooth transition for color change */ | ||
|
||
&:hover { | ||
color: #0056b3; /* Darker blue color on hover */ | ||
@include themify($themes) { | ||
color: themed('light-argo-teal-5'); | ||
} | ||
} | ||
} | ||
} |
46 changes: 43 additions & 3 deletions
46
ui/src/app/settings/components/clusters-list/clusters-list.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters