119 lines
1.7 KiB
Plaintext
119 lines
1.7 KiB
Plaintext
// loading 效果
|
|
.wea-demo-loading {
|
|
height: 100%;
|
|
text-align: center;
|
|
|
|
>div {
|
|
position: absolute;
|
|
top: 50%;
|
|
}
|
|
}
|
|
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: Arial;
|
|
color: #333333;
|
|
}
|
|
|
|
|
|
#container,
|
|
body,
|
|
html {
|
|
height: 100%;
|
|
overflow: scroll !important;
|
|
scrollbar-width: none; //火狐滚动条处理
|
|
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 0px;
|
|
height: 0px;
|
|
background-color: transparent;
|
|
display: none;
|
|
}
|
|
|
|
|
|
//列表滚动条
|
|
.wea-new-table {
|
|
::-webkit-scrollbar {
|
|
width: 10px !important;
|
|
height: 10px !important;
|
|
background-color: transparent;
|
|
}
|
|
/*定义滚动条轨道 内阴影+圆角*/
|
|
::-webkit-scrollbar-track {
|
|
-webkit-box-shadow: transparent;
|
|
background-color: transparent;
|
|
}
|
|
/*定义滑块 内阴影+圆角*/
|
|
::-webkit-scrollbar-thumb {
|
|
border-radius: 10px;
|
|
-webkit-box-shadow: none;
|
|
background-color: #ccc;
|
|
}
|
|
}
|
|
|
|
//自定义设置
|
|
.fieldDef{
|
|
width: 100%;
|
|
height: 100%;
|
|
.wea-tab .wea-search-tab{
|
|
&>span{
|
|
margin-left: 0px !important;
|
|
}
|
|
}
|
|
|
|
.status-clz, .sex-clz, .accounttype-clz{
|
|
a {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.tabBtn-active {
|
|
color: #34a2ff;
|
|
}
|
|
|
|
.tabBtn {
|
|
cursor: pointer;
|
|
font-size: 20px;
|
|
position: relative;
|
|
top: 6px;
|
|
right: 15px;
|
|
}
|
|
|
|
|
|
//组织架构图
|
|
#node {
|
|
width: 95%;
|
|
height: 100%;
|
|
}
|
|
|
|
.quickOperate {
|
|
position: fixed;
|
|
width: 45px;
|
|
height: 250px;
|
|
right: 28px;
|
|
top: 20px;
|
|
// border: 1px solid #8b4513;
|
|
|
|
img {
|
|
cursor: pointer;
|
|
width: 30px;
|
|
height: 30px;
|
|
}
|
|
|
|
icon {
|
|
cursor: pointer;
|
|
font-size: 30px;
|
|
display: block;
|
|
margin-top: 10px;
|
|
}
|
|
} |