File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -319,7 +319,18 @@ export default class TopcoderHeader extends React.Component {
319
319
}
320
320
321
321
return (
322
- < div styleName = "header" ref = { ( div ) => { this . headerRoot = div ; } } >
322
+ < div
323
+ styleName = "header"
324
+ ref = { ( div ) => { this . headerRoot = div ; } }
325
+ onMouseLeave = { ( ) => {
326
+ if ( openedMenu ) {
327
+ closeMenu ( ) ;
328
+ }
329
+ if ( searchOpened ) {
330
+ closeSearch ( ) ;
331
+ }
332
+ } }
333
+ >
323
334
< div styleName = "main-desktop-header" >
324
335
< a href = { BASE_URL } styleName = "logo" >
325
336
< LogoTopcoderWithName height = { 53 } width = { 135 } />
Original file line number Diff line number Diff line change 106
106
visibility : false;
107
107
width : 100% ;
108
108
transition : all 0.25s ease-in-out ;
109
+ z-index : 10 ;
109
110
110
111
& :global.opened {
111
112
height : 128px ;
You can’t perform that action at this time.
0 commit comments