Skip to content

Commit bcc5000

Browse files
committed
Extra colors
1 parent de3125a commit bcc5000

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

src/card/settings/CardSettings.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,11 @@ const NeoCardSettings = ({
9191
);
9292

9393
return (
94-
<div className={`card-view n-bg-palette-neutral-bg-weak ${expanded ? 'expanded' : ''} n-overflow-y-auto n-h-full`}>
94+
<div
95+
className={`card-view n-bg-palette-neutral-bg-weak n-text-palette-neutral-text-default ${
96+
expanded ? 'expanded' : ''
97+
} n-overflow-y-auto n-h-full`}
98+
>
9599
{cardSettingsHeader}
96100
<ReportItemContainer style={{ height: reportHeight }} className='-n-mt-2'>
97101
{cardSettingsContent}

src/card/view/CardViewHeader.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@ const NeoCardViewHeader = ({
7171
text: {
7272
primary: 'rgb(var(--palette-neutral-text))',
7373
},
74+
action: {
75+
disabled: 'rgb(var(--palette-neutral-text-weak))',
76+
},
7477
},
7578
});
7679

@@ -117,6 +120,11 @@ const NeoCardViewHeader = ({
117120
size={'small'}
118121
style={{ paddingTop: '0px important!' }}
119122
variant={'standard'}
123+
sx={{
124+
'& .MuiInputBase-input.Mui-disabled': {
125+
WebkitTextFillColor: 'inherit',
126+
},
127+
}}
120128
/>
121129
</td>
122130
</tr>

0 commit comments

Comments
 (0)