index.less 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. @import '../../app.less';
  2. .user-table {
  3. table {
  4. width: 100%;
  5. margin-bottom: 10px;
  6. line-height: 20px;
  7. tbody {
  8. overflow-y: auto;
  9. background: #fff;
  10. }
  11. .check {
  12. padding-left: 15px;
  13. text-align: left;
  14. .checkbox-item {
  15. margin-right: 10px;
  16. vertical-align: middle;
  17. }
  18. }
  19. th {
  20. padding: 0 20px;
  21. background: #ECEDEE;
  22. height: 60px;
  23. .assets {
  24. vertical-align: top;
  25. margin-left: 3px;
  26. margin-top: 3px;
  27. }
  28. }
  29. th.check {
  30. padding: 0 20px;
  31. padding-left: 40px;
  32. }
  33. td {
  34. padding: 15px;
  35. }
  36. }
  37. .empty {
  38. width: 100%;
  39. height: 100px;
  40. line-height: 100px;
  41. text-align: center;
  42. }
  43. .page {
  44. padding-top: 20px;
  45. text-align: center;
  46. span {
  47. margin: 0 15px;
  48. display: inline-block;
  49. color: #303139;
  50. b {
  51. color: #4299FF;
  52. font-weight: 500;
  53. }
  54. }
  55. }
  56. }
  57. .user-table.border {
  58. table {
  59. border-bottom: 1px solid #ECEDEE;
  60. }
  61. th {
  62. border: 1px solid #fff;
  63. }
  64. }
  65. .user-table.small {
  66. table {
  67. th {
  68. height: 40px;
  69. }
  70. }
  71. }
  72. .user-table.even {
  73. tbody {
  74. tr:nth-of-type(even) {
  75. background: #FBFBFB;
  76. }
  77. }
  78. }
  79. .user-table.odd {
  80. tbody {
  81. tr:nth-of-type(odd) {
  82. background: #FBFBFB;
  83. }
  84. }
  85. }
  86. .user-table.dark {
  87. tbody {
  88. tr {
  89. background: #ECEDEE;
  90. }
  91. }
  92. }
  93. .user-table.children {
  94. tbody {
  95. tr.even {
  96. background: #FBFBFB;
  97. }
  98. }
  99. }
  100. .user-table.top {
  101. td {
  102. vertical-align: top;
  103. }
  104. }