aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/animationtimeline/TimelineMenu.tsx
diff options
context:
space:
mode:
authorandrewdkim <adkim414@gmail.com>2019-08-06 16:02:35 -0400
committerandrewdkim <adkim414@gmail.com>2019-08-06 16:02:35 -0400
commita4b5fa0273bb7bc872699f0f0ce047ec0fbc7d43 (patch)
treeac35fc8a360682c0e2dd1dd1abffe8fb52a09d74 /src/client/views/animationtimeline/TimelineMenu.tsx
parentb6990a61befdea70abd99f125a2488ce5a6f04a6 (diff)
debug and context menu
Diffstat (limited to 'src/client/views/animationtimeline/TimelineMenu.tsx')
-rw-r--r--src/client/views/animationtimeline/TimelineMenu.tsx18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/client/views/animationtimeline/TimelineMenu.tsx b/src/client/views/animationtimeline/TimelineMenu.tsx
index adbd21e62..52f6f6535 100644
--- a/src/client/views/animationtimeline/TimelineMenu.tsx
+++ b/src/client/views/animationtimeline/TimelineMenu.tsx
@@ -95,20 +95,20 @@ export class TimelineMenu extends React.Component {
switch(this._type){
case "keyframe":
menu = [
- <button> Show Schema</button>,
- <button> Delete Keyframe</button>,
- <input placeholder="Move Keyframe"/>
+ <button className="timeline-menu-button"> Show Schema</button>,
+ <button className="timeline-menu-button"> Delete Keyframe</button>,
+ <input className="timeline-menu-input"placeholder="Move Keyframe"/>
];
break;
case "region" :
menu = [
- <button onClick={this.addEase}>Add Ease</button>,
- <button onClick={this.addPath}>Add Path</button>,
- <input placeholder="fadeIn"/>,
- <input placeholder="fadeOut"/>,
- <input placeholder="position"/>,
- <input placeholder="duration"/>,
+ <button className="timeline-menu-button" onClick={this.addEase}>Add Ease</button>,
+ <button className="timeline-menu-button"onClick={this.addPath}>Add Path</button>,
+ <input className="timeline-menu-input"placeholder="fadeIn"/>,
+ <input className="timeline-menu-input"placeholder="fadeOut"/>,
+ <input className="timeline-menu-input"placeholder="position"/>,
+ <input className="timeline-menu-input"placeholder="duration"/>,
];
break;
case "timeline":