github.com/argoproj/argo-cd/v3@v3.2.1/ui/src/app/settings/components/clusters-list/cluster-list.scss (about) 1 @import 'node_modules/argo-ui/src/styles/config'; 2 @import 'node_modules/argo-ui/src/styles/theme'; 3 4 5 .help-text { 6 color: $argo-color-gray-8; 7 @include themify($themes) { 8 color: themed('text-2'); 9 } 10 a { 11 color: #007bff; /* Blue color for the link */ 12 @include themify($themes) { 13 color: themed('light-argo-teal-7'); 14 } 15 text-decoration: none; /* Remove default underline */ 16 transition: color 0.3s ease; /* Smooth transition for color change */ 17 18 &:hover { 19 color: #0056b3; /* Darker blue color on hover */ 20 @include themify($themes) { 21 color: themed('light-argo-teal-5'); 22 } 23 } 24 } 25 }