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 | 1x | .parentElement {
margin-bottom: 7px;
position: relative;
}
.container {
background-color: var(--zdt_desktopnotification_bg);
color: var(--zdt_desktopnotification_text);
transition: all var(--zd_transition4);
position: relative;
transform-origin: right center;
max-height: 100%;
box-shadow: var(--zd_bs_desktopnotification_container);
border-radius: 0 0 var(--zd_size10) var(--zd_size10);
pointer-events: auto;
}
.globalNotify {
max-width: 490px;
min-width: 394px;
}
/* Size */
.medium {
width: 452px;
}
.large {
width: 580px;
}
.tapWidth{
max-width: 100%;
min-width: 100%;
}
/* Animation Style */
.closeAnimation {
max-height: 0;
margin-bottom: 0;
transition: all var(--zd_transition3) 0.4s;
}
.animation {
composes: modeForward from '~@zohodesk/components/lib/common/animation.module.css';
animation-duration: var(--zd_transition4);
-webkit-animation-duration: var(--zd_transition4);
}
.leftanimate {
composes: slideLeft from '~@zohodesk/components/lib/common/animation.module.css';
composes: animation;
}
.leftnoanimate {
transform: translateX(0) scale(1);
opacity: 1;
}
.rightanimate {
composes: slideRight from '~@zohodesk/components/lib/common/animation.module.css';
composes: animation;
composes: closeAnimation;
}
/* Container Style */
.message {
padding: 10px 20px 10px 76px;
border-top: 1px solid var(--zdt_desktopnotification_message_border);
cursor: pointer;
position: relative;
color: var(--zdt_desktopnotification_message_text);
font-size: 11px;
composes: dotted textCap from '~@zohodesk/components/lib/common/common.module.css';
height: 33px;
transition: padding var(--zd_transition3), height var(--zd_transition3);
}
.message:hover {
background: var(--zdt_desktopnotification_message_hover_bg);
}
/* Section */
.section {
padding: 15px 30px 30px;
}
.subTitle {
font-size: 15px;
line-height: 1.3333;
font-family: var(--zd_semibold);
composes: ftsmooth wbreak from '~@zohodesk/components/lib/common/common.module.css';
}
.subTitleMargin {
margin-bottom: 17px;
}
.infoText {
font-size: 14px;
line-height: 1.43;
composes: wbreak from '~@zohodesk/components/lib/common/common.module.css';
}
.secondaryInfo {
margin-top: 20px;
}
.footer {
border-radius: 0 0 var(--zd_size10) var(--zd_size10);
overflow: hidden;
}
|