1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 20:59:44 +02:00

Fix attachment thumbnail label color

This commit is contained in:
Maksim Eltyshev 2020-04-23 03:49:39 +05:00
parent 49dc28b0d7
commit dc66a93e18
2 changed files with 11 additions and 2 deletions

View file

@ -65,7 +65,16 @@ const Item = React.memo(
>
{coverUrl ? (
isCover && (
<Label corner="left" size="tiny" icon="star" className={styles.thumbnailLabel} />
<Label
corner="left"
size="mini"
icon={{
name: 'star',
color: 'grey',
inverted: true,
}}
className={styles.thumbnailLabel}
/>
)
) : (
<span className={styles.extension}>{extension || '-'}</span>

View file

@ -98,7 +98,7 @@
}
.thumbnailLabel {
border-color: rgba(255, 255, 255, 0.8) !important;
border-color: rgba(29, 46, 63, 0.8) !important;
}
.wrapper {