| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- @import '../../../../themes/t.cell.scss';
- @import '../../common.scss';
- /* module/chats/components/guide/guide.wxss */
- .steward-wrapper {
- // --primary-color: #38FF6E;
- --primary-color: #1D6FF6;
- --td-cell-title-color: var(--primary-color);
- --td-cell-hover-color: #F5F5F5;
- }
- .health-analysis-title {
- color: #1D6FF6 !important;
- }
- .steward-wrapper .t-cell.cell-border-gradient {
- .t-cell__title {
- color: #1D6FF6 !important;
- }
- }
- .title {
- display: flex;
- flex-direction: row;
- align-items: center;
- // color: #fff;
- color: #191919;
- font-weight: bold;
- font-size: 16px;
- .icon {
- margin-left: 4px;
- width: 12px;
- height: 16px;
- }
- }
- .disabled {
- opacity: 0.5 !important;
- }
- .t-cell {
- &__note {
- color: #BBBBBB !important;
- font-size: 32rpx !important;
- }
- &.t-cell--hover {
- background-color: #F5F5F5 !important;
- opacity: 1 !important;
- }
- }
- // Custom hover class
- .custom-cell-hover {
- background-color: #F5F5F5 !important;
- }
- // Override default hover effect
- .t-cell--hover {
- background-color: #F5F5F5 !important;
- opacity: 1 !important;
- }
|