-
Notifications
You must be signed in to change notification settings - Fork 298
Description
What version of Unfold are you using?
0.67.0
What version of Django are you using?
5.2.7
What browser are you using?
Firefox 144
Did you checked changelog/commit history, if the bug is not already fixed?
Yes
Did you searched other issues, if the bug is not already fixed?
Yes, there is this closed issue but I'm hoping to revisit this as it's a usability issue that affects clickability recognition.
Did you checked documentation?
Yes
Are you able to replicate the bug in the demo site?
https://demo.unfoldadmin.com/en/admin/formula/circuit/
https://demo.unfoldadmin.com/en/admin/formula/
Describe your issue
Currently links in the changelist tables and apps view are not clearly indicative that they are clickable because their color does not distinguish them from regular text.
I'm using this style fix in my project, I think this might be a good default.
th > a {
color: var(--color-primary-500);
transition: color 0.2s ease;
}
th > a:hover {
color: var(--color-primary-600);
}

