|
|
@ -368,10 +368,7 @@ class Toolbox extends Component<Props> { |
|
|
|
return ( |
|
|
|
return ( |
|
|
|
<div |
|
|
|
<div |
|
|
|
className = { rootClassNames } |
|
|
|
className = { rootClassNames } |
|
|
|
id = 'new-toolbox' |
|
|
|
id = 'new-toolbox'> |
|
|
|
onFocus = { this._onTabIn } |
|
|
|
|
|
|
|
onMouseOut = { this._onMouseOut } |
|
|
|
|
|
|
|
onMouseOver = { this._onMouseOver }> |
|
|
|
|
|
|
|
{ this._renderToolboxContent() } |
|
|
|
{ this._renderToolboxContent() } |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
); |
|
|
|
); |
|
|
@ -1300,7 +1297,11 @@ class Toolbox extends Component<Props> { |
|
|
|
|
|
|
|
|
|
|
|
return ( |
|
|
|
return ( |
|
|
|
<div className = { containerClassName }> |
|
|
|
<div className = { containerClassName }> |
|
|
|
<div className = 'toolbox-content-wrapper'> |
|
|
|
<div |
|
|
|
|
|
|
|
className = 'toolbox-content-wrapper' |
|
|
|
|
|
|
|
onFocus = { this._onTabIn } |
|
|
|
|
|
|
|
onMouseOut = { this._onMouseOut } |
|
|
|
|
|
|
|
onMouseOver = { this._onMouseOver }> |
|
|
|
<div className = 'toolbox-content-items'> |
|
|
|
<div className = 'toolbox-content-items'> |
|
|
|
{ this._renderAudioButton() } |
|
|
|
{ this._renderAudioButton() } |
|
|
|
{ this._renderVideoButton() } |
|
|
|
{ this._renderVideoButton() } |
|
|
|