Skip to content

Feature Request: Hide repeating text in columns #1469

@aavmurphy

Description

@aavmurphy

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!

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions