This is quite simply one of the most valuable mods to my site. I truly hope that we see it ported to 3.7, as it would be a great loss.
I have one issue which should be fairly simple for someone to resolve. I am using
live sortable columns, which creates links in the header element. The header seems to be defaulting to a different CSS setting when it comes to links. It works well for the content rows (defaulting to the correct link colors for
alt1 and
alt2. However, a couple of my styles have table header backgrounds which are causing the column headers to be illegible when the links show.
I have had success modifying the header css by adding the following to
Additional CSS Definitions:
PHP Code:
table.stg_table thead th {height:25px; font-weight:bold}
What do I need to add to specify a link color for the header? I do not wish to impact the link colors of row content.
EDIT
I discovered the following comment in the
sorttable.js:
PHP Code:
//link.className = 'sortheader';
Unfortunately, I tried the follow three settings to no avail:
PHP Code:
table.sortable thead th {color:#FFFFFF; font-weight: bold}
table.stg_table.sortable thead th {color:#FFFFFF; font-weight: bold}
table.stg_table sortable {color:#FFFFFF; font-weight: bold}