guide.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. @import '../../../../themes/t.cell.scss';
  2. @import '../../common.scss';
  3. /* module/chats/components/guide/guide.wxss */
  4. .steward-wrapper {
  5. // --primary-color: #38FF6E;
  6. --primary-color: #1D6FF6;
  7. --td-cell-title-color: var(--primary-color);
  8. --td-cell-hover-color: #F5F5F5;
  9. }
  10. .health-analysis-title {
  11. color: #1D6FF6 !important;
  12. }
  13. .steward-wrapper .t-cell.cell-border-gradient {
  14. .t-cell__title {
  15. color: #E7E7E7 !important;
  16. }
  17. }
  18. .title {
  19. display: flex;
  20. flex-direction: row;
  21. align-items: center;
  22. // color: #fff;
  23. color: #191919;
  24. font-weight: bold;
  25. font-size: 16px;
  26. .icon {
  27. margin-left: 4px;
  28. width: 12px;
  29. height: 16px;
  30. }
  31. }
  32. .disabled {
  33. opacity: 0.5 !important;
  34. }
  35. .t-cell {
  36. &__note {
  37. color: #BBBBBB !important;
  38. font-size: 32rpx !important;
  39. }
  40. &.t-cell--hover {
  41. background-color: #F5F5F5 !important;
  42. opacity: 1 !important;
  43. }
  44. }
  45. /* 仅去掉特定 cell 的分隔线 */
  46. .no-border::after {
  47. background: transparent !important;
  48. }
  49. // Custom hover class
  50. .custom-cell-hover {
  51. background-color: #F5F5F5 !important;
  52. }
  53. // Override default hover effect
  54. .t-cell--hover {
  55. background-color: #F5F5F5 !important;
  56. opacity: 1 !important;
  57. }