element.scss 955 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. // * table-box 表格页面样式
  2. .table,
  3. .table-box {
  4. display: flex;
  5. flex: 1;
  6. flex-direction: column;
  7. width: 100%;
  8. height: 100%;
  9. }
  10. .el-select {
  11. width: 100%;
  12. }
  13. .el-header {
  14. background-color: rgba(18, 21, 39, 0.86);
  15. }
  16. .el-form-item__content {
  17. :deep(.el-date-editor.el-input) {
  18. width: 100% !important;
  19. }
  20. }
  21. .el-form-item__content {
  22. :deep(.el-input__wrapper) {
  23. width: 100% !important;
  24. }
  25. }
  26. img {
  27. border-radius: 8px;
  28. }
  29. .el-table .cell {
  30. white-space: nowrap !important;
  31. }
  32. .el-table .el-table__row {
  33. color: #909399;
  34. font-weight: 600;
  35. }
  36. .el-menu-item,
  37. .el-sub-menu__title {
  38. font-weight: 600;
  39. letter-spacing: 1px;
  40. }
  41. .el-popper.is-customized {
  42. /* Set padding to ensure the height is 32px */
  43. padding: 6px 12px;
  44. background: linear-gradient(90deg, rgb(159, 229, 151), rgb(204, 229, 129));
  45. }
  46. .el-popper.is-customized .el-popper__arrow::before {
  47. background: linear-gradient(45deg, #b2e68d, #bce689);
  48. right: 0;
  49. }