Skip to content

Commit 77d5cb7

Browse files
committed
fix: testing menu opacity
1 parent 67d3f72 commit 77d5cb7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/components/ui/simple-dropdown.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ const SimpleDropdownMenuContent = React.forwardRef<HTMLDivElement, SimpleDropdow
127127
<div
128128
ref={ref}
129129
className={cn(
130-
'absolute z-[9999] min-w-[10rem] overflow-hidden rounded-md border bg-white p-2 shadow-md',
130+
'absolute z-[99999] min-w-[10rem] overflow-hidden rounded-md border bg-white p-2 shadow-md',
131131
'top-full right-0 mt-1',
132132
className
133133
)}

src/features/statements/components/StatementItem.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ const StatementItem: React.FC<StatementItemProps> = ({
664664
id={`statement-${statement.id}`}
665665
className={`border rounded-md p-1 md:p-3 space-y-2 relative ${
666666
statement.isArchived
667-
? 'bg-gray-100 border-gray-300 opacity-80'
667+
? 'bg-gray-100 border-gray-300 text-gray-600'
668668
: 'bg-white border-gray-200 shadow-sm'
669669
}`}
670670
>
@@ -685,7 +685,7 @@ const StatementItem: React.FC<StatementItemProps> = ({
685685
<span
686686
className={`inline-flex items-center justify-center ${
687687
statement.isPublic ? 'text-green-500' : 'text-red-500'
688-
} ${statement.isArchived ? 'opacity-70' : ''}`}
688+
} ${statement.isArchived ? 'text-opacity-80' : ''}`}
689689
>
690690
{statement.isPublic ? (
691691
<MailPlus size={16} />
@@ -780,7 +780,7 @@ const StatementItem: React.FC<StatementItemProps> = ({
780780
<span
781781
className={`inline-flex items-center justify-center flex-shrink-0 ${
782782
statement.isPublic ? 'text-green-500' : 'text-red-500'
783-
} ${statement.isArchived ? 'opacity-70' : ''}`}
783+
} ${statement.isArchived ? 'text-opacity-80' : ''}`}
784784
>
785785
{statement.isPublic ? (
786786
<MailPlus size={16} className=' m-1' />

0 commit comments

Comments
 (0)