mirror of
https://github.com/plankanban/planka.git
synced 2025-12-22 09:15:37 +03:00
Fix attachment thumbnail label color
This commit is contained in:
@@ -65,7 +65,16 @@ const Item = React.memo(
|
|||||||
>
|
>
|
||||||
{coverUrl ? (
|
{coverUrl ? (
|
||||||
isCover && (
|
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>
|
<span className={styles.extension}>{extension || '-'}</span>
|
||||||
|
|||||||
@@ -98,7 +98,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.thumbnailLabel {
|
.thumbnailLabel {
|
||||||
border-color: rgba(255, 255, 255, 0.8) !important;
|
border-color: rgba(29, 46, 63, 0.8) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrapper {
|
.wrapper {
|
||||||
|
|||||||
Reference in New Issue
Block a user