myperformance.less 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /* mMine/pages/myperformance/myperformance.wxss */
  2. .title-view {
  3. background-color: #f0f0f0;
  4. .title-view-text {
  5. font-size: 12px;
  6. color: #666;
  7. text-align: center;
  8. border-right: 1px solid #f0f0f0;
  9. }
  10. }
  11. .title-view, .order-list-item-row {
  12. padding: 12px 0px;
  13. display: flex;
  14. justify-content: space-around;
  15. align-items: center;
  16. border-bottom: 1px solid #f0f0f0;
  17. }
  18. .order-list-item {
  19. display: flex;
  20. flex-direction: column;
  21. text {
  22. font-size: 14px;
  23. color: #333;
  24. text-align: center;
  25. border-right: 1px solid #f0f0f0;
  26. }
  27. .order-list-item-btn {
  28. padding: 7.5px 0px;
  29. display: flex;
  30. height: 30px;
  31. button {
  32. font-size: 12px;
  33. color: white;
  34. width: 80px;
  35. }
  36. .per-detail {
  37. background-color: rebeccapurple;
  38. }
  39. .per-manual {
  40. background-color: yellowgreen;
  41. }
  42. .apply-dely {
  43. background-color: chocolate;
  44. }
  45. .apply-default {
  46. background-color: sandybrown;
  47. }
  48. .edit {
  49. background-color: darkgoldenrod;
  50. }
  51. }
  52. }