This commit is contained in:
Manav Rathi 2025-02-03 18:11:00 +05:30
parent c7859131b0
commit 4ad13a2991
No known key found for this signature in database
2 changed files with 1 additions and 6 deletions

View File

@ -150,11 +150,6 @@ declare module "@mui/material/styles" {
* during image editing.
*/
croppedAreaOverlay: string;
/**
* Color of overlaid icons on top of thumbnails. e.g. color of the
* "archived" indicator shown on top of albums.
*/
overlayIndicatorMuted: string;
/**
* Color of the total space in the usage bar on the storage card.
*/

View File

@ -552,7 +552,7 @@ const CollectionBarCardIcon: React.FC<CollectionBarCardIconProps> = ({
attributes.includes("incomingShareCollaborator")) && <PeopleIcon />}
{attributes.includes("sharedOnlyViaLink") && <LinkIcon />}
{attributes.includes("archived") && (
<ArchiveIcon sx={{ color: "fixed.overlayIndicatorMuted" }} />
<ArchiveIcon sx={{ opacity: 0.48 }} />
)}
</CollectionBarCardIcon_>
);