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 | 1x | .container {
position: relative;
composes: dInflex from '~@zohodesk/components/lib/common/common.module.css';
vertical-align: middle;
}
.pop {
position: absolute;
composes: rounded from '~@zohodesk/components/lib/common/common.module.css';
cursor: pointer;
opacity: 0;
visibility: hidden;
top: 0;
left: 0;
height: 100%;
width: 100%;
transition: opacity var(--zd_transition2);
transform: translateZ(0);
background-color: var(--zdt_avatarclose_pop_bg);
color: var(--zdt_avatarclose_pop_text);
transform: rotate(45deg);
}
.icon {
position: absolute;
line-height: 0;
font-size: 16px;
composes: middleBoth from '~@zohodesk/components/lib/common/common.module.css';
}
.container:hover .pop {
opacity: 1;
visibility: visible;
}
|