PluginProbe
F4 Post Tree / trunk
F4 Post Tree vtrunk
trunk 1.0.2 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.10 1.1.11 1.1.12 1.1.13 1.1.14 1.1.15 1.1.16 1.1.18 1.1.19 1.1.2 1.1.20 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 All 29 releases
f4-tree / Tree / assets / css / tree.css

tree.css in F4 Post Tree trunk, at Tree/assets/css/tree.css

79 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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