index.less 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. @import '../../app.less';
  2. .user-table {
  3. table {
  4. width: 100%;
  5. margin-bottom: 10px;
  6. line-height: 20px;
  7. .select {
  8. padding-left: 15px;
  9. text-align: left;
  10. .checkbox-item {
  11. margin-right: 10px;
  12. vertical-align: middle;
  13. }
  14. }
  15. th {
  16. padding: 0 20px;
  17. background: #ECEDEE;
  18. height: 60px;
  19. }
  20. th.select {
  21. padding-left: 40px;
  22. }
  23. td {
  24. padding: 20px;
  25. }
  26. }
  27. .empty {
  28. width: 100%;
  29. height: 100px;
  30. line-height: 100px;
  31. text-align: center;
  32. }
  33. .page {
  34. text-align: center;
  35. span {
  36. margin: 0 15px;
  37. display: inline-block;
  38. color: #303139;
  39. b {
  40. color: #4299FF;
  41. font-weight: 500;
  42. }
  43. }
  44. }
  45. }
  46. .user-table.border {
  47. table {
  48. border-bottom: 1px solid #ECEDEE;
  49. }
  50. th {
  51. border: 1px solid #fff;
  52. }
  53. }
  54. .user-table.small {
  55. table {
  56. th {
  57. height: 40px;
  58. }
  59. }
  60. }
  61. .user-table.even {
  62. tbody {
  63. overflow-y: auto;
  64. tr:nth-of-type(even) {
  65. background: #FBFBFB;
  66. }
  67. }
  68. }
  69. .user-table.dark {
  70. tr {
  71. background: #ECEDEE;
  72. }
  73. }