You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
954 B
CSS
57 lines
954 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
img {
|
|
-webkit-user-select: none; /* Safari 3.1+ */
|
|
-moz-user-select: none; /* Firefox 2+ */
|
|
-ms-user-select: none; /* IE 10+ */
|
|
user-select: none; /* Standard syntax */
|
|
}
|
|
html,
|
|
body,
|
|
#app,
|
|
.wrapper {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
body {
|
|
font-family: "PingFang SC", "Helvetica Neue", Helvetica, "microsoft yahei",
|
|
arial, STHeiTi, sans-serif;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* 表格样式*/
|
|
.el-table-column--selection .cell {
|
|
padding-left: 14px !important;
|
|
}
|
|
|
|
/*滚动条样式*/
|
|
/* 整个滚动条 */
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
}
|
|
|
|
/* 滚动条上的滚动滑块 */
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: #ccc;
|
|
/* 关键代码 */
|
|
border-radius: 2px;
|
|
}
|
|
|
|
/* 滚动条轨道 */
|
|
::-webkit-scrollbar-track {
|
|
background-color: #f0f0f0;
|
|
border-radius: 2px;
|
|
}
|
|
.el-table__fixed,
|
|
.el-table__fixed-right {
|
|
height: auto !important;
|
|
bottom: 15px !important;
|
|
}
|