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 | 3x | .wrapper {
transition: var(--zd_transition1);
width: 160px;
height: 28px;
position: relative;
}
.boxType {
border: 1px solid transparent;
border-radius: 4px;
}
.borderType {
border-bottom: 1px solid transparent;
}
.boxType,
.borderType {
border-color: var(--zdt_lookupsearch_boxstyle_border);
}
.boxType:hover,
.borderType:hover {
border-color: var(--zdt_lookupsearch_boxstyle_hover_border);
}
.boxType.active,
.borderType.active {
border-color: var(--zdt_lookupsearch_boxstyle_activer_border);
}
.focusWidth {
width: 220px;
}
.drpSearchBox {
position: relative;
cursor: pointer;
height: 28px;
padding-left: 12px;
}
.searchIcon {
padding-right: 8px;
}
.searchIconBox {
padding-left: 12px;
}
.active,
.boxStyle.active,
.lineActive.drpSearchBox::after {
border-color: var(--zdt_lookupsearch_boxstyle_activer_border);
}
.iconArrow {
margin-left: 6px;
}
.separator {
width: 1px;
height: 16px;
margin: 0 12px;
background-color: var(--zdt_lookupsearch_boxstyle_border);
} |