-
Notifications
You must be signed in to change notification settings - Fork 754
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
blackice theme mismatch #785
Comments
Hi @davidjkrause! I think I'll leave it as it is for now because of all the jsFiddle demos out there that link to the file. But, thanks for the heads up! I will fix the file name in the Abelt repository (ref) so that the dash won't be an issue once this repository is replaced by that plugin. |
Okay, I will keep an eye an AbeIt, looks great. Also, I found that using "headerTemplate: {content}" doesn't kill the icons with the blackice theme, because it seems they are just background images, and nothing is clearing them out. Is that expected? |
The blackice theme adds a header background image. It doesn't use or do anything to the icons, so you'll need to add some extra css to hide the icons. .tablesorter-blackice .tablesorter-header i {
display: none;
} In Abelt, I made all themes use the icon, and set the |
Hi, I’m curious, what is Abelt? Is it meant to replace tablesorter eventually?
|
Hi @lindonb! Yes. I'm making Abelt more modular (sorting has been moved into a widget) and meant to replace my fork of tablesorter. This was done in part to avoid confusing this fork with the original tablesorter - trust me it happens a lot - and partly to make some much needed changes to the infrastructure. Abelt is still a work-in-progress. I have a very basic version running in the Abelt repository (no online demo yet) which I have been slowly working on when I have time. |
Thanks @Mottie! Your fork of tablesorter is a great program so glad to see you continuing to improve it. Hopefully the switchover won't be too painful, but anyway no pain no gain! |
In the latest version (v2.20.0), I added a build process which creates a distribution folder ( Just one more step to building a better plugin 😀 |
Was trying out the various themes that are included. There's a theme file called theme.black-ice.css, but the css in that file drops the "-", so if you include the file theme.black-ice.css, the Javascript to use later needs to be:
This is unlike the other theme with a "-" in the title, metro-dark, where the "-" is kept in the css.
It was easiest for me to change the file name of the css to theme.blackice.css, then I can continue using templates to switch themes where the file name matches the css.
The text was updated successfully, but these errors were encountered: