diff options
| author | Aubrey Li <Aubrey-Li> | 2022-03-17 18:03:53 -0400 |
|---|---|---|
| committer | Aubrey Li <Aubrey-Li> | 2022-03-17 18:03:53 -0400 |
| commit | 0b0f734403094c3e12449a4e4b59721011954a1c (patch) | |
| tree | a2cb4150bcba5eee294af4697f26de057ffe0339 /src/client/views/nodes/trails/PresBox.tsx | |
| parent | 4e826c06bf3141f4561692f8565476db287f6135 (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.tsx | 9 |
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>; } |
