12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- // 自定义table-header
- .el-table .el-table__row td {
- color: #7e8bab;
- border-bottom: 1px solid #f4f4f4;
- }
- .el-table .el-table__header tr th:first-child {
- border-radius: 10px 0px 0px 10px;
- }
- .el-table .el-table__header tr th:nth-last-child(2) {
- border-radius: 0px 10px 10px 0px;
- }
- .el-table .el-table__header tr th {
- background: #f1f6ff;
- color: #13171e;
- border-bottom: 0px;
- }
- // 搜索button
- .long-btn {
- width: 240px;
- }
- .export-btn {
- background: #185da6;
- &:hover {
- background: #185da6;
- opacity: 0.8;
- }
- }
- // 不允许复制
- .nocopy {
- user-select: none !important;
- }
- // 修改默认滚动条
- // ::-webkit-scrollbar {
- // width: 6px;
- // height: 6px;
- // background: transparent;
- // }
- // ::-webkit-scrollbar-thumb {
- // background: transparent;
- // border-radius: 4px;
- // }
- // :hover::-webkit-scrollbar-thumb {
- // background: hsla(0, 0%, 53%, 0.4);
- // }
- // :hover::-webkit-scrollbar-track {
- // background: hsla(0, 0%, 53%, 0.1);
- // }
- // 卡片背景
- .bg-box {
- padding: 13px;
- width: 100%;
- .bg-card {
- padding: 20px;
- background: #fff;
- border-radius: 5px;
- overflow-x: hidden;
- }
- .mb20 {
- margin-bottom: 20px;
- }
- .bg185DA6 {
- background: #185DA6;
- }
- .text-right {
- text-align: right;
- }
- .text-center {
- text-align: center;
- }
- .link {
- text-decoration: underline;
- color: #FF786F;
- }
- .c_FF786F {
- color: #FF786F;
- }
- }
|