Skip to content

Commit

Permalink
fix color but not dsfr
Browse files Browse the repository at this point in the history
  • Loading branch information
MelFonk committed Dec 9, 2024
1 parent 31e8191 commit 47fe634
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/app/outils/csv/components/action-button-neutral.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ export default function ActionButtonNeutral({ children, label, isFullSize = fals
padding: 0;
margin: 0;
cursor: pointer;
color: ${colors.colors.grey.border};
color: ${colors.colors.primary.badge};
}
button:disabled {
opacity: 50%;
opacity: 75%;
cursor: not-allowed;
}
`}
Expand Down
2 changes: 1 addition & 1 deletion src/app/outils/csv/components/columns-select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export default function ColumnsSelect({ columns, selectedColumns, onAdd, onRemov
font-weight: bold;
text-align: center;
width: 20px;
color: ${theme.colors.primary.badge};
color: ${theme.colors.grey.badge};
background-color: ${theme.colors.primary.bg};
}
`}
Expand Down
2 changes: 1 addition & 1 deletion src/app/outils/csv/components/holder.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export default function Holder({ file = null, placeholder, isLoading = false, on
<div className="loading">Chargement du fichier… <span><Loader aria-hidden="true" /></span></div>
)
: (
<span className="fr-icon-flood-fill" aria-hidden="true" aria-label="Recharger le fichier" />
<span className="fr-icon-refresh-fill" aria-hidden="true" aria-label="Recharger le fichier" />
)}
</div>
)
Expand Down
2 changes: 1 addition & 1 deletion src/app/outils/csv/components/selectable-item-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default function SelectableItemList({ list, buttonIcon, action }: Selecta
border: 1px solid ${theme.colors.grey.main};
white-space: nowrap;
width: 100%;
background: #fff;
background: #000;
cursor: pointer;
}
Expand Down

0 comments on commit 47fe634

Please sign in to comment.