Change History
New api methods will be announced here. Changes in our data that is relevant to checkers scripts/tags will also be announced here.
Changed By: KaiserVonChina
Change Date: February 14, 2026 06:11PM
Re: Checker CSS and helper functions
I tried some more to update my scripts with the new CSS classes.
However, I still don't manage to get tables with "1px solid black" borders using CSS classes.
Class "table-bordered" uses some light gray border which is very similar to the background color I use for my table header and just looks ugly. I didn't find anything for black border.
I tried switching on borders with your class and then to override the border style and make it inherited to the TDs like this, but it did not work:
[code]
<table class="table-bordered" style="border: 1px solid black; border-collapse: collapse; width: auto;">
[/code]
Also I did not find any class for my table that would make the <TH> and <TD> elements use "text-align: center". That would be really helpful, because otherwise I need to define it again on every single cell.
Also can you please make "width: auto;" the default for tables? Your default "width: 100%;" is breaking the output for many scripts.
If we really want a table to use the full width, we can switch it on. Otherwise we would like e.g. a DT grid to be squared and not take the full width of the screen.
Original Message
Author: KaiserVonChina
Date: February 14, 2026 10:51AM
Re: Checker CSS and helper functions
I tried some more to update my scripts with the new CSS classes.
However, I still don't manage to get tables with "1px solid black" borders using CSS classes.
Class "table-bordered" uses some light gray border which is very similar to the background color I use for my table header and just looks ugly. I didn't find anything for black border.
Also I did not find any class for my table that would make the
and | elements use "text-align: center".
|