aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/trails/PresBox.tsx
diff options
context:
space:
mode:
authorAubrey Li <Aubrey-Li>2022-03-17 18:03:53 -0400
committerAubrey Li <Aubrey-Li>2022-03-17 18:03:53 -0400
commit0b0f734403094c3e12449a4e4b59721011954a1c (patch)
treea2cb4150bcba5eee294af4697f26de057ffe0339 /src/client/views/nodes/trails/PresBox.tsx
parent4e826c06bf3141f4561692f8565476db287f6135 (diff)
left key make slide & hover info
Diffstat (limited to 'src/client/views/nodes/trails/PresBox.tsx')
-rw-r--r--src/client/views/nodes/trails/PresBox.tsx9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/client/views/nodes/trails/PresBox.tsx b/src/client/views/nodes/trails/PresBox.tsx
index a063eefb0..0e512c131 100644
--- a/src/client/views/nodes/trails/PresBox.tsx
+++ b/src/client/views/nodes/trails/PresBox.tsx
@@ -2479,9 +2479,12 @@ export class PresBox extends ViewBoxBaseComponent<FieldViewProps>() {
</div>
{ // if the document type is a presentation, then the collection stacking view has a "+ new slide" button at the bottom of the stack
- <div className="add button" style={{ width: 200, height: 100 }}>
- <button onClick={this.startMarqueeCreateSlide}> + NEW SLIDE</button>
- </div>}
+ <Tooltip title={<div className="dash-tooltip">{"Click on document to pin to presentaiton or make a marquee selection to pin your desired view"}</div>}>
+ <button className="add-slide-button" onPointerDown={this.startMarqueeCreateSlide}>
+ + NEW SLIDE
+ </button>
+ </Tooltip>
+ }
</div>
</div>;
}