-
Notifications
You must be signed in to change notification settings - Fork 752
Closed
Labels
Description
I wrote a plugin for this. It hides repeated-text (and it's table cell borders) in vertical columns. Its another way of 'grouping' content together (except that you use that word for something else. Its triggered by a class in the <th>. It works by adding a class to the td
So, a table like
a a a
a a b
a a c
a b a
a b b
b a a
Gets displayed as
a a a
b
c
a b a
b
b a a
Best to get the idea with an example :
https://www.walkingclub.org.uk/walk/
https://www.walkingclub.org.uk/hills/munros/index.shtml
The CSS I use is
.sp_col_show {
background-color: white !important; /* needed because of stripped rows */
}
.sp_col_hide {
visibility: hidden;
border-top: white !important;
background-color: white !important; /* needed because of stripped rows */
}
Thanks for your work. Its greatly appreciated!
Reactions are currently unavailable