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 | 1x | /* $Id$ */
.varClass {
--textColor: var(--zdt_alphabeticList_text);
--textHoverColor: var(--zdt_alphabeticList_hover_text);
}
.container {
composes: varClass;
composes: h100 from '~@zohodesk/components/lib/common/common.module.css';
list-style: none;
margin: 0;
padding: 0;
pointer-events: initial;
}
.column .title {
margin-bottom: 3px;
}
.row .title {
margin-right: 3px;
}
.row .letter {
padding: 0 3px;
}
.column .letter {
padding: 3px 0;
}
.heading {
composes: dotted from '~@zohodesk/components/lib/common/common.module.css';
max-width: 100%;
}
.list {
font-size: 11px;
text-align: center;
flex-basis: 12px;
cursor: pointer;
color: var(--textColor);
}
.title {
flex-basis: 15px;
}
.letter {
text-transform: uppercase;
display: inline-block;
}
.numbers .list {
max-height: 35px;
}
.list :hover,
.selected {
color: var(--textHoverColor);
}
.title {
font-size: 11px;
font-family: var(--zd_semibold);
}
|