username@email.com
2023-02-28 67a0042c5f29e4bb0e0b82f6190f2bc51480b45c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
.z-layout {
    position:relative;
    height:100%;
    width:100%;
    padding:5px;
}
.z-layout.z-layout-left-center {
    padding-left:203px;
}
 
.z-layout-left {
    position:absolute;
    top:0;
    left:0;
    width:203px;
    height:100%;
    padding:10px 0px 10px 10px;
}
.z-layout-center {
    position:relative;
    width:100%;
    height:100%;
    padding:5px;
}
 
 
.z-layout-wrap {
    position:relative;
    width:100%;
    height:100%;
    background-color:#fff;
    border:1px solid #ccc;
   
    padding-top:32px;
    border-radius: 3px;
 
    -webkit-transition: opacity 0.25s ease-out;
    -moz-transition: opacity 0.25s ease-out;
    transition: opacity 0.25s ease-out;
 
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
}
.z-layout-center .z-layout-wrap{
    padding-top:87px;
}
.z-layout-center .z-layout-wrap.z-layout-wrap-notitle {
    padding-top:55px;
}
.z-layout-left .z-layout-wrap.z-layout-wrap-notitle {
    padding-top:0px;
}
 
.z-layout-title {
    position:absolute;
    top:0;
    left:0;
    height: 32px;
    line-height: 32px;
    width:100%;
    border-bottom: 1px solid #ccc;
    color: #666;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: bold;
    padding-left: 9px;
    font-size:12px;
    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
    -khtml-user-select: text;
    user-select: text;
}
.z-layout-tool {
    position:absolute;
    top:32px;
    left:0;
    width:100%;
    height:55px;
    border-bottom:1px solid #ccc;
    z-index:3;
}
.z-layout-center .z-layout-wrap.z-layout-wrap-notitle .z-layout-tool {
    top:0px;
}
 
.z-layout-tool-left {
    position: absolute;
    left: 10px;
    top: 0;
    height:100%;
}
.z-layout-tool-left .z-layout-tool-item {
    position:relative;
    float:left;
    padding-top:13px;
    padding-left:5px;
}
 
 
 
.z-layout-tool-right {
    position:absolute;
    right:15px;
    top:0;
    height:100%;
    padding-top:12px;
}
 
.z-layout-body {
    position:relative;
    width:100%;
    height:100%;
}
 
 
.z-layout-move {
    position:absolute;
    top:0;
    z-index:1;
}
.z-layout-move-right {
    right:-8px;
    width:8px;
    height:100%;
    cursor:col-resize;
}