index.less 889 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. @charset "utf-8";
  2. #my-note {
  3. .user-action {
  4. .tip {
  5. font-size: 12px;
  6. color: #A7A7B7;
  7. span {
  8. color: #4299FF;
  9. cursor: pointer;
  10. margin: 0 5px;
  11. }
  12. i {
  13. font-size: 14px;
  14. cursor: pointer;
  15. }
  16. }
  17. }
  18. .table-layout {
  19. padding: 20px 30px;
  20. .user-table {
  21. table {
  22. margin: 0;
  23. font-size: 12px;
  24. th.select {
  25. padding-left: 45px;
  26. }
  27. th {
  28. color: #686872;
  29. font-weight: 500;
  30. background: #FBFBFB;
  31. padding: 20px 15px;
  32. white-space: nowrap;
  33. overflow: hidden;
  34. }
  35. td {
  36. padding: 20px 15px;
  37. border-bottom: 1px solid #eee;
  38. }
  39. .group {
  40. display: inline-block;
  41. }
  42. .sub {
  43. display: inline-block;
  44. }
  45. }
  46. }
  47. }
  48. }