edit-table.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. .hc-ledger-table-form {
  2. .hc-page-bar {
  3. position: relative;
  4. display: flex;
  5. align-items: center;
  6. justify-content: flex-end;
  7. .icon {
  8. font-size: 36rpx;
  9. margin-right: 6rpx;
  10. }
  11. .text {
  12. font-size: 26rpx;
  13. }
  14. }
  15. .title-bar {
  16. position: absolute;
  17. display: flex;
  18. width: 100%;
  19. padding: 15rpx;
  20. background: #E8EEF2;
  21. overflow-x: auto;
  22. white-space: nowrap;
  23. .title-bar-btn {
  24. flex: 1;
  25. color: #6FCC9F;
  26. background-color: #EBF9F4;
  27. height: 58rpx;
  28. font-size: 25rpx;
  29. padding: 0;
  30. margin: 0;
  31. line-height: initial;
  32. border-radius: 6rpx;
  33. display: flex;
  34. justify-content: center;
  35. align-items: center;
  36. &:after {
  37. display: none;
  38. }
  39. }
  40. .title-bar-btn + .title-bar-btn {
  41. margin-left: 16rpx;
  42. }
  43. }
  44. .action-bar {
  45. position: absolute;
  46. bottom: 0;
  47. width: 100%;
  48. background: white;
  49. padding: 22rpx 28rpx calc(var(--window-bottom) + 30rpx);
  50. .text-bar {
  51. position: relative;
  52. display: flex;
  53. align-items: center;
  54. color: #be98fa;
  55. text-decoration: underline;
  56. font-size: 26rpx;
  57. margin-bottom: 40rpx;
  58. .left {
  59. position: relative;
  60. text-align: center;
  61. flex: 1;
  62. }
  63. .right {
  64. position: relative;
  65. text-align: center;
  66. flex: 1;
  67. }
  68. }
  69. .cu-btn {
  70. width: 100%;
  71. color: white;
  72. }
  73. .cu-btn.c1 {
  74. background-color: #778e53;
  75. border: 1px solid #617f33;
  76. }
  77. .cu-btn.c2 {
  78. background-color: #828282;
  79. border: 1px solid #5d5d5d;
  80. }
  81. .cu-btn.c3 {
  82. background-color: #e99d42;
  83. border: 1px solid #ad7030;
  84. }
  85. .cu-btn.c4 {
  86. background-color: #72a6d7;
  87. border: 1px solid #2856ee;
  88. }
  89. }
  90. }