65 lines
1.4 KiB
CSS
65 lines
1.4 KiB
CSS
@charset "utf-8";
|
|
@import "../lib/layui/css/layui.css";
|
|
|
|
.content-body {
|
|
position: absolute;
|
|
top: 46px;
|
|
right: 0px;
|
|
bottom: 42px;
|
|
left: 200px;
|
|
z-index: 1;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.content-body .layui-tab-content {
|
|
position: absolute;
|
|
top: 50px;
|
|
bottom: 0px;
|
|
width: 100%;
|
|
padding: 0px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/*使iframe高度100%,它的父类高度也需要100%*/
|
|
.content-body .layui-tab-content .layui-tab-item {
|
|
height: 100%;
|
|
}
|
|
|
|
.content-body .layui-tab-content .layui-tab-item iframe {
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
/*定义一些常量值*/
|
|
.ok-body {
|
|
padding: 10px;
|
|
}
|
|
|
|
.ok-body-breadcrumb {
|
|
position: relative;
|
|
z-index: 99;
|
|
line-height: 39px;
|
|
height: 39px;
|
|
padding: 0px 20px;
|
|
border-bottom: 1px solid rgb(229, 229, 229);
|
|
overflow: hidden;
|
|
}
|
|
|
|
/*
|
|
.ok-search {
|
|
text-align: center;
|
|
}
|
|
|
|
.ok-search input.layui-input {
|
|
width: 190px;
|
|
}*/
|
|
|
|
/*美化滚动条代码*/
|
|
::-webkit-scrollbar{width:10px;height:10px;}
|
|
::-webkit-scrollbar-button:vertical{display:none;}
|
|
::-webkit-scrollbar-track:vertical{background-color:black;}
|
|
::-webkit-scrollbar-track-piece{background-color:#F5F5F5;}
|
|
::-webkit-scrollbar-thumb:vertical{margin-right:10px; background-color:#A6A6A6;}
|
|
::-webkit-scrollbar-thumb:vertical:hover{background-color:#aaa;}
|
|
::-webkit-scrollbar-corner:vertical{background-color:#535353;}
|
|
::-webkit-scrollbar-resizer:vertical{background-color:#FF6E00;} |