From e5fd174d7fb88e90f8d7a1164056ce580f4f590e Mon Sep 17 00:00:00 2001 From: guy Date: Sun, 21 May 2017 21:11:13 +0800 Subject: [PATCH] add --- src/css/base/list/clusterize.css | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/css/base/list/clusterize.css diff --git a/src/css/base/list/clusterize.css b/src/css/base/list/clusterize.css new file mode 100644 index 0000000000..2b8d17ee55 --- /dev/null +++ b/src/css/base/list/clusterize.css @@ -0,0 +1,32 @@ +/* max-height - the only parameter in this file that needs to be edited. + * Change it to suit your needs. The rest is recommended to leave as is. + */ +.clusterize-scroll { + overflow: auto; +} +/** + * Avoid vertical margins for extra tags + * Necessary for correct calculations when rows have nonzero vertical margins + */ +.clusterize-extra-row { + margin-top: 0 !important; + margin-bottom: 0 !important; +} +/* By default extra tag .clusterize-keep-parity added to keep parity of rows. + * Useful when used :nth-child(even/odd) + */ +.clusterize-extra-row.clusterize-keep-parity { + display: none; +} +/* During initialization clusterize adds tabindex to force the browser to keep focus + * on the scrolling list, see issue #11 + * Outline removes default browser's borders for focused elements. + */ +.clusterize-content { + outline: 0; +} +/* Centering message that appears when no data provided + */ +.clusterize-no-data td { + text-align: center; +}