guide.scss 1.2 KB

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