lite.less 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .lite {
  2. //min-height: 100%;
  3. min-width: 720px;
  4. min-height: 500px;
  5. height: 100%;
  6. width: 100%;
  7. padding-right: 10px;
  8. // display: flex;
  9. // justify-content: flex-start;
  10. // flex-direction: row;
  11. .el-card {
  12. min-height: 100%;
  13. margin-bottom: 10px;
  14. display: flex;
  15. flex-direction: column;
  16. }
  17. .el-card /deep/ .el-card__header {
  18. padding: 10px;
  19. .title {
  20. overflow: hidden;
  21. white-space: nowrap;
  22. text-overflow: ellipsis;
  23. }
  24. .action {
  25. padding: 0px 10px;
  26. float: right;
  27. .el-button--text {
  28. padding: 0px;
  29. }
  30. .el-button + .el-button {
  31. margin-left: 5px;
  32. }
  33. }
  34. }
  35. .el-card /deep/ .el-card__body {
  36. flex: 1;
  37. padding: 0;
  38. }
  39. .el-card.details /deep/ .el-card__body {
  40. padding: 10px;
  41. }
  42. }
  43. .right.list /deep/ .el-card__body {
  44. padding: 0;
  45. /deep/ .el-table__body-wrapper {
  46. min-height: 200px;
  47. }
  48. }
  49. .el-table--mini .naf-icons {
  50. font-size: 12px;
  51. }
  52. .el-table--mini .icon + .icon {
  53. margin-left: 3px;
  54. }