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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | 1x | .container {
position: relative;
composes: dInflex from '~@zohodesk/components/lib/common/common.module.css';
vertical-align: middle;
border-radius: 50%;
}
.thread {
composes: rounded from '~@zohodesk/components/lib/common/common.module.css';
position: absolute;
}
.pointer {
cursor: pointer;
}
.defaultCursor {
cursor: default;
}
.threadBg {
background-color: var(--zdt_avatarthread_bg);
}
.thread_xsmall_pos,
.thread_medium_pos,
.thread_xmedium_pos {
height: 15px;
width: 15px;
}
.thread_xsmall_pos {
top: -5px;
right: -5px;
}
.thread_small_pos {
top: -3px;
right: -6px;
height: 12px;
width: 12px;
}
.thread_small_pos i {
font-size: 8px;
}
.thread_medium_pos {
top: -4px;
right: -5px;
}
.thread_xmedium_pos {
top: -4px;
right: -3px;
}
.thread_large_pos {
top: 0;
right: 0;
height: 16px;
width: 16px;
}
.thread_xlarge_pos {
top: 2px;
right: 4px;
height: 18px;
width: 18px;
}
.icon {
position: absolute;
line-height: 0;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.border_primary {
border: 1px solid var(--zdt_avatarthread_primary_border);
}
.border_success {
border: 1px solid var(--zdt_avatarthread_success_border);
}
.border_danger {
border: 1px solid var(--zdt_avatarthread_danger_border);
}
.border_default {
border: 1px solid var(--zdt_avatarthread_default_border);
}
.border_orange {
border: 1px solid var(--zdt_avatarthread_orange_border);
}
.hover .thread {
display: none;
}
.hover .thread {
cursor: pointer;
z-index: 1;
}
.hover:hover .thread {
display: block;
}
.text_primary {
color: var(--zdt_avatarthread_primary_text);
}
.text_success {
color: var(--zdt_avatarthread_success_text);
}
.text_danger {
color: var(--zdt_avatarthread_danger_text);
}
.text_default {
color: var(--zdt_avatarthread_default_text);
}
.text_orange {
color: var(--zdt_avatarthread_orange_text);
} |