| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- @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: #E7E7E7 !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;
- }
- }
- /* 仅去掉特定 cell 的分隔线 */
- .no-border::after {
- background: transparent !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;
- }
|