diff options
| author | Sophie Zhang <sophie_zhang@brown.edu> | 2024-04-09 12:15:08 -0400 |
|---|---|---|
| committer | Sophie Zhang <sophie_zhang@brown.edu> | 2024-04-09 12:15:08 -0400 |
| commit | eecc7ee1d14719d510ec2975826022c565a35e5f (patch) | |
| tree | 21aceeda95d05b133611bfddca92d2d0460ea094 /src/client/views/nodes/trails/PresBox.tsx | |
| parent | d8863c3188cf0c4647b70d3dc9ec5f2fffe5525c (diff) | |
pushing progress
Diffstat (limited to 'src/client/views/nodes/trails/PresBox.tsx')
| -rw-r--r-- | src/client/views/nodes/trails/PresBox.tsx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/client/views/nodes/trails/PresBox.tsx b/src/client/views/nodes/trails/PresBox.tsx index 8745bf1a4..9019f9945 100644 --- a/src/client/views/nodes/trails/PresBox.tsx +++ b/src/client/views/nodes/trails/PresBox.tsx @@ -1726,7 +1726,7 @@ export class PresBox extends ViewBoxBaseComponent<FieldViewProps>() { if (activeItem.type === DocumentType.AUDIO) duration = NumCast(activeItem.duration); return ( <div className="presBox-ribbon"> - <div className="ribbon-doubleButton"> + <div className="presBox-toggles"> <Tooltip title={<div className="dash-tooltip">Hide before presented</div>}> <div className={`ribbon-toggle ${activeItem.presentation_hideBefore ? 'active' : ''}`} @@ -1764,14 +1764,14 @@ export class PresBox extends ViewBoxBaseComponent<FieldViewProps>() { Lightbox </div> </Tooltip> - <Tooltip title={<div className="dash-tooltip">Transition movement style</div>}> + {/* <Tooltip title={<div className="dash-tooltip">Transition movement style</div>}> <div className="ribbon-toggle" style={{ border: `solid 1px ${SettingsManager.userColor}`, color: SettingsManager.userColor, background: activeItem.presEaseFunc === 'ease' ? SettingsManager.userVariantColor : SettingsManager.userBackgroundColor }} onClick={() => this.updateEaseFunc(activeItem)}> {`${StrCast(activeItem.presEaseFunc, 'ease')}`} </div> - </Tooltip> + </Tooltip> */} </div> {[DocumentType.AUDIO, DocumentType.VID].includes(targetType as any as DocumentType) ? null : ( <> @@ -2207,28 +2207,28 @@ export class PresBox extends ViewBoxBaseComponent<FieldViewProps>() { type={Type.TERT} color={activeItem.presentation_effectDirection === PresEffectDirection.Left ? SettingsManager.userVariantColor : SettingsManager.userBackgroundColor} tooltip="Left" - icon={<FaArrowLeft size={'16px'} />} + icon={<FaArrowRight size={'16px'} />} onClick={() => this.updateEffectDirection(PresEffectDirection.Left)} /> <IconButton type={Type.TERT} color={activeItem.presentation_effectDirection === PresEffectDirection.Right ? SettingsManager.userVariantColor : SettingsManager.userBackgroundColor} tooltip="Right" - icon={<FaArrowRight size={'16px'} />} + icon={<FaArrowLeft size={'16px'} />} onClick={() => this.updateEffectDirection(PresEffectDirection.Right)} /> <IconButton type={Type.TERT} color={activeItem.presentation_effectDirection === PresEffectDirection.Top ? SettingsManager.userVariantColor : SettingsManager.userBackgroundColor} tooltip="Top" - icon={<FaArrowUp size={'16px'} />} + icon={<FaArrowDown size={'16px'} />} onClick={() => this.updateEffectDirection(PresEffectDirection.Top)} /> <IconButton type={Type.TERT} color={activeItem.presentation_effectDirection === PresEffectDirection.Bottom ? SettingsManager.userVariantColor : SettingsManager.userBackgroundColor} tooltip="Bottom" - icon={<FaArrowDown size={'16px'} />} + icon={<FaArrowUp size={'16px'} />} onClick={() => this.updateEffectDirection(PresEffectDirection.Bottom)} /> </div> |
