1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- // * table-box 表格页面样式
- .table,
- .table-box {
- display: flex;
- flex: 1;
- flex-direction: column;
- width: 100%;
- height: 100%;
- }
- .el-select {
- width: 100%;
- }
- .el-header {
- background-color: rgba(18, 21, 39, 0.86);
- }
- .el-form-item__content {
- :deep(.el-date-editor.el-input) {
- width: 100% !important;
- }
- }
- .el-form-item__content {
- :deep(.el-input__wrapper) {
- width: 100% !important;
- }
- }
- img {
- border-radius: 8px;
- }
- .el-table .cell {
- white-space: nowrap !important;
- }
- .el-table .el-table__row {
- color: #909399;
- font-weight: 600;
- }
- .el-menu-item,
- .el-sub-menu__title {
- font-weight: 600;
- letter-spacing: 1px;
- }
- .el-popper.is-customized {
- /* Set padding to ensure the height is 32px */
- padding: 6px 12px;
- background: linear-gradient(90deg, rgb(159, 229, 151), rgb(204, 229, 129));
- }
- .el-popper.is-customized .el-popper__arrow::before {
- background: linear-gradient(45deg, #b2e68d, #bce689);
- right: 0;
- }
|