@@ -1019,7 +1019,7 @@ export const ListView: React.FC<ListViewProps> = ({
10191019 variant = "ghost"
10201020 size = "sm"
10211021 className = { cn (
1022- "h-7 px-2 text-muted-foreground hover:text-primary text-xs" ,
1022+ "h-7 px-2 text-muted-foreground hover:text-primary text-xs transition-colors duration-150 " ,
10231023 hiddenFields . size > 0 && "text-primary"
10241024 ) }
10251025 >
@@ -1078,7 +1078,7 @@ export const ListView: React.FC<ListViewProps> = ({
10781078 variant = "ghost"
10791079 size = "sm"
10801080 className = { cn (
1081- "h-7 px-2 text-muted-foreground hover:text-primary text-xs" ,
1081+ "h-7 px-2 text-muted-foreground hover:text-primary text-xs transition-colors duration-150 " ,
10821082 hasFilters && "bg-primary/10 border border-primary/20 text-primary"
10831083 ) }
10841084 >
@@ -1117,7 +1117,7 @@ export const ListView: React.FC<ListViewProps> = ({
11171117 variant = "ghost"
11181118 size = "sm"
11191119 className = { cn (
1120- "h-7 px-2 text-muted-foreground hover:text-primary text-xs" ,
1120+ "h-7 px-2 text-muted-foreground hover:text-primary text-xs transition-colors duration-150 " ,
11211121 groupingConfig && "bg-primary/10 border border-primary/20 text-primary"
11221122 ) }
11231123 >
@@ -1177,7 +1177,7 @@ export const ListView: React.FC<ListViewProps> = ({
11771177 variant = "ghost"
11781178 size = "sm"
11791179 className = { cn (
1180- "h-7 px-2 text-muted-foreground hover:text-primary text-xs" ,
1180+ "h-7 px-2 text-muted-foreground hover:text-primary text-xs transition-colors duration-150 " ,
11811181 currentSort . length > 0 && "bg-primary/10 border border-primary/20 text-primary"
11821182 ) }
11831183 >
@@ -1216,7 +1216,7 @@ export const ListView: React.FC<ListViewProps> = ({
12161216 variant = "ghost"
12171217 size = "sm"
12181218 className = { cn (
1219- "h-7 px-2 text-muted-foreground hover:text-primary text-xs" ,
1219+ "h-7 px-2 text-muted-foreground hover:text-primary text-xs transition-colors duration-150 " ,
12201220 rowColorConfig && "bg-primary/10 border border-primary/20 text-primary"
12211221 ) }
12221222 >
@@ -1281,7 +1281,7 @@ export const ListView: React.FC<ListViewProps> = ({
12811281 < Button
12821282 variant = "ghost"
12831283 size = "sm"
1284- className = "h-7 px-2 text-muted-foreground hover:text-primary text-xs"
1284+ className = "h-7 px-2 text-muted-foreground hover:text-primary text-xs transition-colors duration-150 "
12851285 >
12861286 < Download className = "h-3.5 w-3.5 mr-1.5" />
12871287 < span className = "hidden sm:inline" > Export</ span >
@@ -1311,7 +1311,7 @@ export const ListView: React.FC<ListViewProps> = ({
13111311 < Button
13121312 variant = "ghost"
13131313 size = "sm"
1314- className = "h-7 px-2 text-muted-foreground hover:text-primary text-xs"
1314+ className = "h-7 px-2 text-muted-foreground hover:text-primary text-xs transition-colors duration-150 "
13151315 title = { `Sharing: ${ schema . sharing ?. visibility || schema . sharing ?. type || 'private' } ` }
13161316 data-testid = "share-button"
13171317 >
@@ -1325,7 +1325,7 @@ export const ListView: React.FC<ListViewProps> = ({
13251325 < Button
13261326 variant = "ghost"
13271327 size = "sm"
1328- className = "h-7 px-2 text-muted-foreground hover:text-primary text-xs"
1328+ className = "h-7 px-2 text-muted-foreground hover:text-primary text-xs transition-colors duration-150 "
13291329 onClick = { ( ) => window . print ( ) }
13301330 data-testid = "print-button"
13311331 >
@@ -1342,7 +1342,7 @@ export const ListView: React.FC<ListViewProps> = ({
13421342 < Button
13431343 variant = "ghost"
13441344 size = "sm"
1345- className = "h-7 px-2 text-muted-foreground hover:text-primary text-xs"
1345+ className = "h-7 px-2 text-muted-foreground hover:text-primary text-xs transition-colors duration-150 "
13461346 data-testid = "add-record-button"
13471347 onClick = { ( ) => props . onAddRecord ?.( ) }
13481348 >
@@ -1456,7 +1456,7 @@ export const ListView: React.FC<ListViewProps> = ({
14561456 < Button
14571457 variant = "ghost"
14581458 size = "sm"
1459- className = "h-7 px-2 text-muted-foreground hover:text-primary text-xs"
1459+ className = "h-7 px-2 text-muted-foreground hover:text-primary text-xs transition-colors duration-150 "
14601460 data-testid = "add-record-button"
14611461 onClick = { ( ) => props . onAddRecord ?.( ) }
14621462 >
0 commit comments