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 | 1x | .header {
height: 50px;
border-bottom: 1px solid var(--zdt_setupdetail_header_border);
z-index: 2;
}
.back {
width: 60px;
}
.backIcon {
height: 30px;
width: 30px;
font-size: 12px;
display: inline-block;
text-align: center;
color: var(--zdt_setupdetail_backicon);
margin-left: 19px;
border-radius: 50%;
line-height: 2.5;
cursor: pointer;
}
.backIcon:hover {
background-color: var(--zdt_setupdetail_hover_backicon_bg);
}
.title {
font-size: 16px;
line-height: 1;
padding-right: 12px;
font-family: var(--zd_semibold);
color: var(--zdt_setupdetail_backicon);
composes: ftsmooth from '~@zohodesk/components/lib/common/common.module.css';
}
.rightPanel {
composes: justifyFend from '~@zohodesk/components/lib/common/common.module.css';
}
.helpInfoCont {
position: absolute;
z-index: 10;
right: 0;
padding: 12px 15px 0 0;
}
.helpInfo {
border: 1px solid var(--zdt_setupdetail_helpinfo);
border-radius: 2px;
line-height: 2.3636;
height: 28px;
width: 28px;
color: var(--zdt_setupdetail_helpinfo_text);
font-size: 11px;
text-align: center;
cursor: pointer;
display: inline-block;
}
.mr15 {
margin-right: 15px;
}
.content {
z-index: 1;
}
.padding {
padding: 10px 25px 10px 60px;
}
.popup {
z-index: 3;
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 330px;
border: 1px solid var(--zdt_setupdetail_popup_border);
background-color: var(--zdt_setupdetail_popup_bg);
transform: translateX(100%);
transition: transform var(--zd_transition3);
}
.popup.open {
transform: translateX(0);
}
.close {
composes: disableFocus from '~@zohodesk/components/lib/common/common.module.css';
}
.infoHeader {
padding: 10px 20px 11px;
border-bottom: 1px solid var(--zdt_setupdetail_popup_border);
background-color: var(--zdt_setupdetail_infoheader_bg);
color: var(--zdt_setupdetail_infoheader_text);
}
.infoIcon {
height: 26px;
width: 26px;
font-size: 12px;
text-align: center;
border: 1px solid var(--zdt_setupdetail_infoicon_border);
border-radius: 2px;
line-height: 2;
}
.infoText {
margin-left: 8px;
margin-right: 8px;
composes: dotted from '~@zohodesk/components/lib/common/common.module.css';
font-size: 13px;
}
.infoClose {
font-size: 28px;
color: var(--zdt_setupdetail_infoclose);
cursor: pointer;
}
.infoFooter {
padding: 10px 20px;
}
|