mirror of https://github.com/portainer/portainer
fix(ui): tooltip link color EE-4914 (#8365)
parent
5b5dc320d5
commit
ac458d0daa
|
@ -72,6 +72,7 @@
|
||||||
--blue-11: #3ea5ff;
|
--blue-11: #3ea5ff;
|
||||||
--blue-12: #41a6ff;
|
--blue-12: #41a6ff;
|
||||||
--blue-14: #357ebd;
|
--blue-14: #357ebd;
|
||||||
|
--blue-15: #36bffa;
|
||||||
|
|
||||||
--red-1: #a94442;
|
--red-1: #a94442;
|
||||||
--red-2: #c7254e;
|
--red-2: #c7254e;
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
Webhook
|
Webhook
|
||||||
<portainer-tooltip
|
<portainer-tooltip
|
||||||
message="$ctrl.environmentType === 'KUBERNETES' ?
|
message="$ctrl.environmentType === 'KUBERNETES' ?
|
||||||
'See <a href=\'https://docs.portainer.io/user/kubernetes/applications/manifest#automatic-updates\' target=\'_blank\' rel=\'noreferrer\'>Portainer documentation on webhook usage</a>.' :
|
'See <a href=\'https://docs.portainer.io/user/kubernetes/applications/webhooks\' target=\'_blank\' rel=\'noreferrer\'>Portainer documentation on webhook usage</a>.' :
|
||||||
'See <a href=\'https://docs.portainer.io/user/docker/stacks/webhooks\' target=\'_blank\' rel=\'noreferrer\'>Portainer documentation on webhook usage</a>.'"
|
'See <a href=\'https://docs.portainer.io/user/docker/stacks/webhooks\' target=\'_blank\' rel=\'noreferrer\'>Portainer documentation on webhook usage</a>.'"
|
||||||
set-html-message="true"
|
set-html-message="true"
|
||||||
></portainer-tooltip>
|
></portainer-tooltip>
|
||||||
|
|
|
@ -25,6 +25,10 @@
|
||||||
font-size: 12px !important;
|
font-size: 12px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.tooltip-message a {
|
||||||
|
color: var(--blue-15) !important;
|
||||||
|
}
|
||||||
|
|
||||||
.tooltip-heading {
|
.tooltip-heading {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
|
@ -54,7 +54,7 @@ export function TooltipWithChildren({
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
<div>{message}</div>
|
<div className={styles.tooltipMessage}>{message}</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue