.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;
|
}
|