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 | 2x | .small {
max-height: 200px;
}
.medium {
max-height: 348px;
}
.large {
max-height: 400px;
}
.emptyState {
font-size: 14px;
padding: 12px 15px;
color: var(--zdt_viewdropdown_empty_text);
font-family: var(--zd_semibold);
composes: ftsmooth from '~@zohodesk/components/lib/common/common.module.css';
}
.hide {
composes: vishidden from '~@zohodesk/components/lib/common/common.module.css';
}
.container {
position: relative;
}
.listItemContainer {
padding: 10px 0;
}
/* Label Style */
.labelCnt {
composes: dInflex alignVertical from '~@zohodesk/components/lib/common/common.module.css';
line-height: 1.6667;
cursor: pointer;
color: var(--zdt_viewdropdown_label_text);
}
.labelText {
font-size: 12px;
margin-right: 5px;
max-width: 180px;
composes: dotted from '~@zohodesk/components/lib/common/common.module.css';
}
.labelCnt:hover .arrowIcon {
color: var(--zdt_viewdropdown_hover_label_text);
}
.loader {
padding: 12px 15px;
}
|