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 | 3x | .container {
position: relative;
composes: dInflex from '~@zohodesk/components/lib/common/common.module.css';
vertical-align: middle;
}
.paid,
.portal,
.delete {
font-size: 10px;
}
.paid,
.portal,
.delete,
.lock {
position: absolute;
line-height: 0;
}
.paid {
composes: middle from '~@zohodesk/components/lib/common/common.module.css';
left: 50%;
}
.paid {
top: -2px;
}
.portal,
.lock {
background-color: var(--zdt_avataruser_default_bg);
border-radius: 50%;
}
.delete {
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: all var(--zd_transition3);
composes: dflex alignHorizontal alignVertical from '~@zohodesk/components/lib/common/common.module.css';
cursor: pointer;
border-radius: 50%;
background-color: var(--zdt_avataruser_delete_bg);
color: var(--zdt_avataruser_delete_text);
}
.container:hover .delete {
opacity: 1;
}
.small .portal {
top: 0;
right: -4px;
}
.xsmall .portal {
top: 1px;
right: -2px;
}
.medium .portal {
top: 1px;
right: -1px;
}
.xmedium .portal {
top: 3px;
right: 0;
}
.large .portal {
top: 8px;
right: 1px;
}
.xlarge .portal {
top: 15px;
right: 2px;
}
.small .lock {
top: 0;
right: -5px;
font-size: 11px;
}
.xsmall .lock {
top: 1px;
right: -4px;
font-size: 12px;
}
.medium .lock {
top: 2px;
right: -5px;
font-size: 13px;
}
.xmedium .lock {
top: 4px;
right: -6px;
font-size: 14px;
}
.large .lock {
top: 6px;
right: -6px;
font-size: 18px;
}
.xlarge .lock {
top: 12px;
right: -8px;
font-size: 22px;
}
|