UNPKG

991 BCSSView Raw
1/* max-height - the only parameter in this file that needs to be edited.
2 * Change it to suit your needs. The rest is recommended to leave as is.
3 */
4.clusterize-scroll{
5 max-height: 200px;
6 overflow: auto;
7}
8
9/**
10 * Avoid vertical margins for extra tags
11 * Necessary for correct calculations when rows have nonzero vertical margins
12 */
13.clusterize-extra-row{
14 margin-top: 0 !important;
15 margin-bottom: 0 !important;
16}
17
18/* By default extra tag .clusterize-keep-parity added to keep parity of rows.
19 * Useful when used :nth-child(even/odd)
20 */
21.clusterize-extra-row.clusterize-keep-parity{
22 display: none;
23}
24
25/* During initialization clusterize adds tabindex to force the browser to keep focus
26 * on the scrolling list, see issue #11
27 * Outline removes default browser's borders for focused elements.
28 */
29.clusterize-content{
30 outline: 0;
31 counter-reset: clusterize-counter;
32}
33
34/* Centering message that appears when no data provided
35 */
36.clusterize-no-data td{
37 text-align: center;
38}
\No newline at end of file