This commit is contained in:
Markos Gogoulos
2026-02-01 13:24:16 +02:00
parent ba53467033
commit 27828d798e
29 changed files with 1859 additions and 956 deletions

View File

@@ -55,7 +55,7 @@ export function MediaItem(props) {
);
const finalClassname = containerClassname +
(props.showSelection && !isEmbedMode ? ' with-selection' : '') +
(props.showSelection ? ' with-selection' : '') +
(props.isSelected ? ' selected' : '') +
(props.hasAnySelection || isEmbedMode ? ' has-any-selection' : '');

View File

@@ -97,7 +97,7 @@ export function MediaItemAudio(props) {
);
const finalClassname = containerClassname +
(props.showSelection && !isEmbedMode ? ' with-selection' : '') +
(props.showSelection ? ' with-selection' : '') +
(props.isSelected ? ' selected' : '') +
(props.hasAnySelection || isEmbedMode ? ' has-any-selection' : '');

View File

@@ -107,7 +107,7 @@ export function MediaItemVideo(props) {
);
const finalClassname = containerClassname +
(props.showSelection && !isEmbedMode ? ' with-selection' : '') +
(props.showSelection ? ' with-selection' : '') +
(props.isSelected ? ' selected' : '') +
(props.hasAnySelection || isEmbedMode ? ' has-any-selection' : '');

File diff suppressed because it is too large Load Diff