Skip to content

Commit

Permalink
Merge branch 'cz/ui-uplift' of https://github.com/langflow-ai/langflow
Browse files Browse the repository at this point in the history
…into cz/ui-uplift
  • Loading branch information
Cristhianzl committed Oct 24, 2024
2 parents 7e70451 + f27ba24 commit afe9916
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export default function NodeOutputField({
{
<IconComponent
className={cn(
"text-placeholder h-5 w-5 rounded-md",
"h-5 w-5 rounded-md text-placeholder",
displayOutputPreview && !unknownOutput
? "hover:text-foreground"
: "cursor-not-allowed text-muted-foreground opacity-60",
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/src/CustomNodes/GenericNode/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ export default function GenericNode({
<ForwardedIconComponent
name={showHiddenOutputs ? "EyeOff" : "Eye"}
strokeWidth={1.5}
className="text-placeholder h-4 w-4 group-hover:text-foreground"
className="h-4 w-4 text-placeholder group-hover:text-foreground"
/>
</Button>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const CustomInputPopover = ({
<PopoverAnchor>
<div
className={cn(
"primary-input border-1 placeholder:text-placeholder flex h-full min-h-[43px] flex-wrap items-center px-3",
"primary-input border-1 flex h-full min-h-[43px] flex-wrap items-center px-3 placeholder:text-placeholder",
editNode && "min-h-7 p-0",
editNode && disabled && "min-h-5 border-muted p-0",
disabled && "bg-muted text-muted",
Expand Down Expand Up @@ -96,7 +96,7 @@ const CustomInputPopover = ({
className={cn(
"flex items-center gap-1 truncate bg-muted",
nodeStyle &&
"font-jetbrains rounded-[3px] bg-emerald-100 px-1 text-emerald-700 hover:bg-emerald-200",
"rounded-[3px] bg-emerald-100 px-1 font-jetbrains text-emerald-700 hover:bg-emerald-200",
)}
>
<div className="max-w-36 truncate">{selectedOption}</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export default function InputListComponent({
<IconComponent
name={index === 0 ? "Plus" : "Trash2"}
className={cn(
"text-placeholder h-4 w-6",
"h-4 w-6 text-placeholder",
!disabled && "hover:cursor-pointer hover:text-foreground",
index === 0
? "group-hover:text-foreground"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const KeypairListComponent = ({
<IconComponent
name={iconName}
className={cn(
"text-placeholder h-4 w-6",
"h-4 w-6 text-placeholder",
!disabled && "hover:cursor-pointer hover:text-foreground",
isFirstItem
? "group-hover:text-foreground"
Expand Down

0 comments on commit afe9916

Please sign in to comment.