backlog.less 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .backlog {
  2. margin-right: 6px;
  3. margin-bottom: 40px;
  4. overflow-y: auto;
  5. height: 100%;
  6. color: #3b3b3b;
  7. .item {
  8. padding: 8px 0;
  9. width: 100%;
  10. font-size: 24px;
  11. margin-bottom: 20px;
  12. line-height: 50px;
  13. position: relative;
  14. background: #fff;
  15. padding-right: 24px;
  16. &.order {
  17. .point,
  18. .btn {
  19. background-color: #2576f5;
  20. }
  21. }
  22. &.task {
  23. .point,
  24. .btn {
  25. background-color: #ff8400;
  26. }
  27. }
  28. }
  29. .titleCon {
  30. display: flex;
  31. align-items: center;
  32. }
  33. .point {
  34. display: inline-block;
  35. width: 12px;
  36. position: absolute;
  37. left: 0;
  38. top: 0;
  39. height: 100%;
  40. }
  41. .createTime {
  42. float: right;
  43. }
  44. .titleText {
  45. font-size: 24px;
  46. margin: 0 20px;
  47. margin-left: 24px;
  48. font-family: Source Han Sans, Source Han Sans;
  49. }
  50. .bottomCon {
  51. margin-left: 24px;
  52. font-size: 20px;
  53. line-height: 36px;
  54. word-wrap: break-word;
  55. font-family: Source Han Sans, Source Han Sans;
  56. display: flex;
  57. align-items: center;
  58. justify-content: space-between;
  59. .btn {
  60. flex-shrink: 0;
  61. padding: 6px 20px;
  62. border-radius: 12px;
  63. font-size: 24px;
  64. color: #fff;
  65. margin-left: 20px;
  66. }
  67. }
  68. }