2019-07-09 19:45:38 +08:00
|
|
|
@import "./mixins/mixins.scss";
|
|
|
|
@import "./theme/default.scss";
|
|
|
|
// TODO: 滚动条
|
|
|
|
.n-advance-tabel__wrapper {
|
|
|
|
width: 100%;
|
2019-07-16 13:03:02 +08:00
|
|
|
overflow: hidden;
|
2019-07-09 19:45:38 +08:00
|
|
|
.n-table {
|
2019-07-16 10:39:02 +08:00
|
|
|
// background-color: #2b3147;
|
|
|
|
table {
|
|
|
|
word-wrap: break-word;
|
|
|
|
word-break: break-all;
|
|
|
|
table-layout: fixed;
|
2019-07-16 13:03:02 +08:00
|
|
|
// width: auto;
|
2019-07-16 10:39:02 +08:00
|
|
|
}
|
2019-07-09 19:45:38 +08:00
|
|
|
&::-webkit-scrollbar {
|
|
|
|
width: 5px;
|
|
|
|
}
|
|
|
|
&::-webkit-scrollbar-track {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
|
|
background: rgba(255,255,255,0.2);
|
|
|
|
border-radius: 2.5px;
|
|
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb:hover {
|
|
|
|
background: rgba(255,255,255,0.3);
|
|
|
|
}
|
|
|
|
table thead tr th:last-of-type {
|
|
|
|
padding-left: 32px;
|
|
|
|
}
|
|
|
|
}
|
2019-07-11 13:54:40 +08:00
|
|
|
.n-advanced-table__pagination {
|
|
|
|
margin-top: 27px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
2019-07-11 14:17:35 +08:00
|
|
|
.n-advance-table__operation{
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
2019-07-15 18:56:08 +08:00
|
|
|
.n-no-data-tip{
|
|
|
|
padding: 5px;
|
|
|
|
text-align: center;
|
2019-07-19 19:40:01 +08:00
|
|
|
width: 100%;
|
|
|
|
display: table-cell;
|
2019-07-15 18:56:08 +08:00
|
|
|
}
|
2019-07-09 19:45:38 +08:00
|
|
|
}
|