* {
margin: 0;
padding: 0;
border: 0;
-webkit-user-select: text !important;
-moz-user-select: text !important;
-ms-user-select: text !important;
user-select: text !important;
}
html,
body,
#app {
height: 100%;
font-size: 14px; /*no*/
}
html {
overflow-y: hidden;
}
//美化滚动条
.main-container::-webkit-scrollbar,
.noScroll::-webkit-scrollbar {
width: 6px;
height: 6px;
border-radius: 10px;
background-color: rgba(150, 153, 160, 0.3);
}
.main-container::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
.noScroll::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color: rgba(139, 146, 150, 1);
}
.main-container::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner,
.noScroll::-webkit-scrollbar-corner {
background: transparent;
}
.noScroll {
.el-table {
& > .el-table__body-wrapper {
// &::-webkit-scrollbar {
// width: 12px;
// height: 6px;
// border-radius: 10px;
// background-color: rgba(150, 153, 160, 0.1);
// }
// &::-webkit-scrollbar-thumb {
// border-radius: 10px;
// background-color: rgba(139, 146, 150, 1);
// }
// &::-webkit-scrollbar-corner {
// background: transparent;
// }
}
& > .el-table__fixed-right-patch {
// display: none;
}
}
}
// 统一标题
.public_Title {
flex: 1;
display: flex;
align-items: center;
font-weight: bold;
// color: #171c28;
color: #000;
margin: 10px 0;
font-size: 16px;
&::before {
content: '';
width: 4px;
height: 16px;
display: block;
margin: 0 10px;
background-color: #155bd4;
box-shadow: 0px 1px 3px 0px rgba(255, 255, 255, 0.71) inset;
}
}
// 表单100%显示
.fullWidth {
width: 100%;
}
// card 样式
.box-card {
border-radius: 2px 2px 0px 0px;
border: 1px solid #dadee6;
.el-card__header {
background: #f5f7fa;
height: 42px;
display: flex;
align-items: center;
font-size: 14px;
}
.el-card__body {
padding: 8px;
}
}
// dialog标题样式
.el-dialog {
.el-dialog__header {
height: 40px;
background-color: #f5f7fa;
display: flex;
align-items: center;
padding: 0;
padding-left: 10px;
.el-dialog__title {
font-size: 16px;
// color: #333333;
color: #000;
}
.el-dialog__headerbtn {
top: auto;
}
}
.el-dialog__body {
padding: 10px;
}
}