Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | 1x | .varClass {
--icon_color: var(--zdt_thread_iconText);
}
.container {
composes: varClass;
position: relative;
color: var(--icon_color);
cursor: pointer;
}
.container:hover {
--icon_color: var(--zdt_thread_hover_iconText);
}
.count {
font-size: 9px;
}
.align_left .count {
position: absolute;
line-height: normal;
text-align: left;
left: 8px;
top: 3px;
}
.align_right {
composes: dInflex alignFend from '~@zohodesk/components/lib/common/common.module.css';
}
.align_right .count {
position: relative;
bottom: 2px;
right: 5px;
float: right;
} |