fastlion-amis
Version:
一种MIS页面生成工具
95 lines (91 loc) • 2.05 kB
CSS
@charset "UTF-8";
.page-file .ant-modal-close .ant-modal-close-x {
display: flex;
width: 28px;
height: 28px;
padding: 16px 0 0 0;
}
.page-file .ant-modal-close .ant-modal-close-x > span {
margin: auto;
}
.page-file .ant-modal-footer {
padding: 2.5px 4px;
}
.view {
/* background: #444; */
display: flex;
justify-content: center;
height: 300px;
/* padding: 50px 0; */
overflow: auto;
/* width: 200px; */
width: 100vw;
margin: auto;
}
.view::-webkit-scrollbar {
/*滚动条整体样式*/
width: 3px ;
/*高宽分别对应横竖滚动条的尺寸*/
height: 3px ;
/* border-radius : 10px; */
}
.view::-webkit-scrollbar-thumb {
/*滚动条里面小方块*/
border-radius: 10px;
background-color: gray;
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
.view::-webkit-scrollbar-track {
/*滚动条里面轨道*/
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
background: #ededed;
border-radius: 10px;
}
.view .pageContainer {
/* box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px 0px; */
width: 100vw;
max-width: 100%;
}
.pageTool {
display: flex;
width: 100%;
/* position: absolute; */
bottom: 20px;
/* background: #424242;
color: white; */
padding: 8px 15px;
border-radius: 15px;
}
.pageTool .toolBtn {
width: 16vw;
display: flex;
justify-content: center;
align-items: center;
}
.pageTool .toolBtn button {
border: 0px ;
}
.pageTool i {
padding: 5px;
margin: 0 5px;
}
.pageTool i:hover {
background: #333;
}
.pageTool input {
display: inline-block;
width: 30px;
text-align: center;
margin-right: 10px;
height: 24px;
}
.pageTool input::-webkit-outer-spin-button {
-webkit-appearance: none;
}
.pageTool input::-webkit-inner-spin-button {
-webkit-appearance: none;
}
.pageTool input[type=number] {
-moz-appearance: textfield;
}
/*# sourceMappingURL=index.css.map */