diff --git a/css/editors.less b/css/editors.less index 8245a72a0..b029cf119 100644 --- a/css/editors.less +++ b/css/editors.less @@ -726,6 +726,7 @@ textarea { &.small { background: none; border: none; + box-shadow: none; &:after { content: ""; display: block; diff --git a/src/editor/sequencer-editor.js b/src/editor/sequencer-editor.js index 322a1ede7..bdfb1a6cf 100644 --- a/src/editor/sequencer-editor.js +++ b/src/editor/sequencer-editor.js @@ -202,16 +202,10 @@ define( [ "util/mediatypes", "editor/editor", "util/time", clipSection.classList.remove( "small" ); } - if ( options.from ) { - clipSection.style.left = timeToPosition( from ) + "px"; - inInput.value = Time.toTimecode( from ); - outInput.value = Time.toTimecode( from + end - start ); - } - - if ( options.end || options.start ) { - clipSection.style.width = timeToPosition( end - start ) + "px"; - outInput.value = Time.toTimecode( from + end - start ); - } + clipSection.style.left = timeToPosition( from ) + "px"; + clipSection.style.width = timeToPosition( end - start ) + "px"; + inInput.value = Time.toTimecode( from ); + outInput.value = Time.toTimecode( from + end - start ); if ( options.duration ) { clipEndLable.innerHTML = Time.toTimecode( options.duration );