Skip to content

Commit

Permalink
Fixed animation list
Browse files Browse the repository at this point in the history
  • Loading branch information
easylogic committed Sep 18, 2019
1 parent d429781 commit 7c3f992
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 3 deletions.
6 changes: 6 additions & 0 deletions docs/bundle.css
Original file line number Diff line number Diff line change
Expand Up @@ -8478,6 +8478,9 @@ html, body {
.csseditor[data-theme=dark] .timeline-value-area .timeline-value-editor .tab-content .css-property-editor {
margin-top: 0px;
}
.csseditor[data-theme=dark] .timeline-value-area .timeline-value-editor .tab-content .css-property-item > .title {
display: none;
}
.csseditor[data-theme=dark] .timeline-value-area .timeline-value-editor .tab-content .css-property-item > .title > .tools {
display: none;
}
Expand Down Expand Up @@ -16034,6 +16037,9 @@ html, body {
.csseditor[data-theme=light] .timeline-value-area .timeline-value-editor .tab-content .css-property-editor {
margin-top: 0px;
}
.csseditor[data-theme=light] .timeline-value-area .timeline-value-editor .tab-content .css-property-item > .title {
display: none;
}
.csseditor[data-theme=light] .timeline-value-area .timeline-value-editor .tab-content .css-property-item > .title > .tools {
display: none;
}
Expand Down
Binary file modified docs/bundle.css.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/main.js

Large diffs are not rendered by default.

Binary file modified docs/main.js.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions src/csseditor/ui/property/TimelineAnimationProperty.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ export default class TimelineAnimationProperty extends BaseProperty {
[EVENT('addTimeline', 'removeTimeline', 'removeAnimation')] () {
this.refresh();
}

[EVENT('refreshSelection', 'refreshAllSelectArtBoard') + DEBOUNCE(100)] () {
[EVENT('refreshTimeline', 'refreshSelection', 'refreshAllSelectArtBoard') + DEBOUNCE(100)] () {
this.refresh();
}
}
5 changes: 5 additions & 0 deletions src/scss/csseditor/timeline.scss
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@
}

.css-property-item {

> .title {
display: none;
}

> .title > .tools {
display: none;
}
Expand Down

0 comments on commit 7c3f992

Please sign in to comment.