@@ -202,10 +202,22 @@ export function FactoryColumn<
202202 className = "FactoryColumn__Information"
203203 info = { description }
204204 >
205- < DisplayColumName name = { name } />
205+ < DisplayColumName
206+ name = { name }
207+ className = { cn (
208+ isTriggeredColumn &&
209+ 'text-lineage-model-column-active-foreground' ,
210+ ) }
211+ />
206212 </ Information >
207213 ) : (
208- < DisplayColumName name = { name } />
214+ < DisplayColumName
215+ name = { name }
216+ className = { cn (
217+ isTriggeredColumn &&
218+ 'text-lineage-model-column-active-foreground' ,
219+ ) }
220+ />
209221 ) }
210222 </ HorizontalContainer >
211223 </ LoadingContainer >
@@ -214,7 +226,7 @@ export function FactoryColumn<
214226 < NodeBadge className = "FactoryColumn__NodeBadge" > { type } </ NodeBadge >
215227 }
216228 className = { cn (
217- 'FactoryColumn__Metadata relative overflow-visible group p-0 ' ,
229+ 'FactoryColumn__Metadata relative overflow-visible group' ,
218230 isDisabledColumn && 'cursor-not-allowed' ,
219231 className ,
220232 ) }
@@ -240,8 +252,8 @@ export function FactoryColumn<
240252 id = { id }
241253 nodeId = { nodeId }
242254 className = { cn (
243- 'border-t border-lineage-divider first:border-t-0 px-2 ' ,
244- isTriggeredColumn && 'bg-lineage-model-column-active' ,
255+ 'border-t border-lineage-divider first:border-t-0' ,
256+ isTriggeredColumn && 'bg-lineage-model-column-active-background ' ,
245257 ) }
246258 >
247259 { renderColumn ( ) }
@@ -252,11 +264,20 @@ export function FactoryColumn<
252264 } )
253265}
254266
255- function DisplayColumName ( { name } : { name : string } ) {
267+ function DisplayColumName ( {
268+ name,
269+ className,
270+ } : {
271+ name : string
272+ className ?: string
273+ } ) {
256274 return (
257275 < span
258276 title = { name }
259- className = "text-xs font-mono font-semibold w-full truncate"
277+ className = { cn (
278+ 'text-xs font-mono font-semibold w-full truncate' ,
279+ className ,
280+ ) }
260281 >
261282 { name }
262283 </ span >
0 commit comments