Skip to content

Commit bd4d50b

Browse files
lahwaaczjelly
authored andcommitted
Improve the "zebra" style of dynamic tables where rows can be dynamically hidden
1 parent fcd4736 commit bd4d50b

File tree

2 files changed

+22
-6
lines changed

2 files changed

+22
-6
lines changed

sitestatic/archweb.css

+6-2
Original file line numberDiff line numberDiff line change
@@ -754,6 +754,10 @@ table.results {
754754
text-align: center;
755755
}
756756

757+
.results [hidden] {
758+
display: none;
759+
}
760+
757761
/* pkglist: layout */
758762
#pkglist-about {
759763
margin-top: 1.5em;
@@ -1056,12 +1060,12 @@ table td.country {
10561060
background: #ffd;
10571061
}
10581062

1059-
.results tr:nth-child(even),
1063+
.results tr:nth-child(even of :not([hidden])),
10601064
#article-list tr:nth-child(even) {
10611065
background: #e4eeff;
10621066
}
10631067

1064-
.results tr:nth-child(odd),
1068+
.results tr:nth-child(odd of :not([hidden])),
10651069
#article-list tr:nth-child(odd) {
10661070
background: #fff;
10671071
}

sitestatic/archweb.js

+16-4
Original file line numberDiff line numberDiff line change
@@ -212,8 +212,14 @@ function filter_pkgs_list(filter_ele, tbody_ele) {
212212
rows = rows.has('.incomplete');
213213
}
214214
/* hide all rows, then show the set we care about */
215-
all_rows.hide();
216-
rows.show();
215+
// note that we don't use .hide() from jQuery because it adds display:none
216+
// which is very expensive to query in CSS ([style*="display: none"])
217+
all_rows.each(function() {
218+
$(this).attr('hidden', true);
219+
});
220+
rows.each(function() {
221+
$(this).removeAttr('hidden');
222+
});
217223
$('#filter-count').text(rows.length);
218224
/* make sure we update the odd/even styling from sorting */
219225
$('.results').trigger('applyWidgets', [false]);
@@ -330,8 +336,14 @@ function filter_signoffs() {
330336
rows = rows.has('td.signoff-no');
331337
}
332338
/* hide all rows, then show the set we care about */
333-
all_rows.hide();
334-
rows.show();
339+
// note that we don't use .hide() from jQuery because it adds display:none
340+
// which is very expensive to query in CSS ([style*="display: none"])
341+
all_rows.each(function() {
342+
$(this).attr('hidden', true);
343+
});
344+
rows.each(function() {
345+
$(this).removeAttr('hidden');
346+
});
335347
$('#filter-count').text(rows.length);
336348
/* make sure we update the odd/even styling from sorting */
337349
$('.results').trigger('applyWidgets', [false]);

0 commit comments

Comments
 (0)