| 1 |
#wpbody { |
| 2 |
/*z-index: 1000;*/ |
| 3 |
} |
| 4 |
|
| 5 |
#wpcontent, #wpfooter { |
| 6 |
margin-left: 420px; |
| 7 |
} |
| 8 |
|
| 9 |
#wpcontent { |
| 10 |
margin-bottom: 20px; |
| 11 |
} |
| 12 |
|
| 13 |
#adminmenumain { |
| 14 |
position: relative; |
| 15 |
/*z-index: 2000;*/ |
| 16 |
} |
| 17 |
|
| 18 |
#f4-tree-container { |
| 19 |
box-sizing: border-box; |
| 20 |
position: fixed; |
| 21 |
/*z-index: 1100;*/ |
| 22 |
left: 160px; |
| 23 |
top: 32px; |
| 24 |
bottom: 0; |
| 25 |
padding: 10px 5px; |
| 26 |
border-right: 1px solid #DDDDDD; |
| 27 |
width: 260px; |
| 28 |
background-color: rgb(250,250,250); |
| 29 |
overflow-y: auto; |
| 30 |
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); |
| 31 |
resize: horizontal; |
| 32 |
} |
| 33 |
|
| 34 |
#tree { |
| 35 |
position: relative; |
| 36 |
} |
| 37 |
|
| 38 |
/* WPBakery */ |
| 39 |
.vc_fullscreen #f4-tree-container, |
| 40 |
.vc_editor #f4-tree-container { |
| 41 |
display: none !important; |
| 42 |
} |
| 43 |
|
| 44 |
/* Block editor */ |
| 45 |
.focus-on #f4-tree-container, |
| 46 |
.mce-fullscreen #adminmenumain, |
| 47 |
.mce-fullscreen #f4-tree-container { |
| 48 |
display: none; |
| 49 |
} |
| 50 |
|
| 51 |
@media screen and (min-width: 961px) { |
| 52 |
/* WPBakery */ |
| 53 |
body:not(.vc_fullscreen) .vc_subnav-fixed { |
| 54 |
left: 420px !important; |
| 55 |
width: calc(100% - 420px) !important; |
| 56 |
padding-left: 0 !important; |
| 57 |
} |
| 58 |
|
| 59 |
/* Block editor */ |
| 60 |
.interface-interface-skeleton, |
| 61 |
.components-snackbar-list { |
| 62 |
left: 420px !important; |
| 63 |
} |
| 64 |
|
| 65 |
.block-editor-page.wp-editor #f4-tree-container { |
| 66 |
display: block; |
| 67 |
} |
| 68 |
|
| 69 |
.is-fullscreen-mode #f4-tree-container { |
| 70 |
display: none !important; |
| 71 |
} |
| 72 |
} |
| 73 |
|
| 74 |
@media screen and (max-width: 960px) { |
| 75 |
#f4-tree-container { |
| 76 |
display: none !important; |
| 77 |
} |
| 78 |
} |
| 79 |
|