mirror of
https://github.com/idanoo/autobrr
synced 2025-07-26 02:09:13 +00:00
fix(web): tooltips (#519)
fix: fixed broken wrapping in tooltip child elements (missed last letter) enhancement: increased line height for tooltip child cells in case of wrapping for clearer text enhancement: renamed filter rejections from `Filter` to `Rejected` in tooltips chore: changed remaining purple highlights to blue. Co-authored-by: anonymous <anonymous>
This commit is contained in:
parent
547b01a50d
commit
e7222504d6
2 changed files with 6 additions and 6 deletions
|
@ -69,8 +69,8 @@ function TabNavLink({ item }: NavLinkProps) {
|
|||
to={item.href}
|
||||
end
|
||||
className={({ isActive }) => classNames(
|
||||
"text-gray-500 hover:text-purple-600 dark:hover:text-white hover:border-purple-600 dark:hover:border-blue-500 whitespace-nowrap py-4 px-1 font-medium text-sm",
|
||||
isActive ? "border-b-2 border-purple-600 dark:border-blue-500 text-purple-600 dark:text-white" : ""
|
||||
"text-gray-500 hover:text-blue-600 dark:hover:text-white hover:border-blue-600 dark:hover:border-blue-500 whitespace-nowrap py-4 px-1 font-medium text-sm",
|
||||
isActive ? "border-b-2 border-blue-600 dark:border-blue-500 text-blue-600 dark:text-white" : ""
|
||||
)}
|
||||
aria-current={splitLocation[2] === item.href ? "page" : undefined}
|
||||
>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue