fix: add secondary text color to plugin task headers (#29529)
This commit is contained in:
@@ -187,7 +187,7 @@ const PluginTasks = () => {
|
|||||||
{/* Running Plugins */}
|
{/* Running Plugins */}
|
||||||
{runningPlugins.length > 0 && (
|
{runningPlugins.length > 0 && (
|
||||||
<>
|
<>
|
||||||
<div className='system-sm-semibold-uppercase sticky top-0 flex h-7 items-center justify-between px-2 pt-1'>
|
<div className='system-sm-semibold-uppercase sticky top-0 flex h-7 items-center justify-between px-2 pt-1 text-text-secondary'>
|
||||||
{t('plugin.task.installing')} ({runningPlugins.length})
|
{t('plugin.task.installing')} ({runningPlugins.length})
|
||||||
</div>
|
</div>
|
||||||
<div className='max-h-[200px] overflow-y-auto'>
|
<div className='max-h-[200px] overflow-y-auto'>
|
||||||
@@ -220,7 +220,7 @@ const PluginTasks = () => {
|
|||||||
{/* Success Plugins */}
|
{/* Success Plugins */}
|
||||||
{successPlugins.length > 0 && (
|
{successPlugins.length > 0 && (
|
||||||
<>
|
<>
|
||||||
<div className='system-sm-semibold-uppercase sticky top-0 flex h-7 items-center justify-between px-2 pt-1'>
|
<div className='system-sm-semibold-uppercase sticky top-0 flex h-7 items-center justify-between px-2 pt-1 text-text-secondary'>
|
||||||
{t('plugin.task.installed')} ({successPlugins.length})
|
{t('plugin.task.installed')} ({successPlugins.length})
|
||||||
<Button
|
<Button
|
||||||
className='shrink-0'
|
className='shrink-0'
|
||||||
@@ -261,7 +261,7 @@ const PluginTasks = () => {
|
|||||||
{/* Error Plugins */}
|
{/* Error Plugins */}
|
||||||
{errorPlugins.length > 0 && (
|
{errorPlugins.length > 0 && (
|
||||||
<>
|
<>
|
||||||
<div className='system-sm-semibold-uppercase sticky top-0 flex h-7 items-center justify-between px-2 pt-1'>
|
<div className='system-sm-semibold-uppercase sticky top-0 flex h-7 items-center justify-between px-2 pt-1 text-text-secondary'>
|
||||||
{t('plugin.task.installError', { errorLength: errorPlugins.length })}
|
{t('plugin.task.installError', { errorLength: errorPlugins.length })}
|
||||||
<Button
|
<Button
|
||||||
className='shrink-0'
|
className='shrink-0'
|
||||||
|
|||||||
Reference in New Issue
Block a user