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 | 1x | .container {
display: inline-block;
margin-right: 15px;
}
/* css:lineheight-validation:ignore */
.icon {
display: inline-block;
text-align: center;
cursor: pointer;
color: var(--zdt_views_icon);
border: 1px solid var(--zdt_views_border);
height: 28px;
width: 28px;
line-height: var(--zd_size26);
}
.first {
border-radius: 2px 0 0 2px;
}
.last {
border-radius: 0 2px 2px 0;
border-left-width: 0;
}
.icon:hover {
color: var(--zdt_views_hover_icon);
}
.icon.active {
color: var(--zdt_views_active_icon);
}
|