Skip to content

Commit

Permalink
Make HTML table headers sticky.
Browse files Browse the repository at this point in the history
  • Loading branch information
jendrikseipp committed Feb 24, 2024
1 parent b61a38d commit 8bd054a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/news.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Lab
* Let fetch and report steps log only the total number of unexplained errors instead of printing all of them to stderr (Jendrik Seipp).
* Let parsers print an error if the file for a required pattern is missing. Call parser functions with empty string for missing files (Silvan Sievers).
* Raise an error if a run command calls a Python script directly, because this would bypass the virtual environment (Jendrik Seipp).
* Make HTML table headers sticky (Jendrik Seipp).

Downward Lab
^^^^^^^^^^^^
Expand Down
3 changes: 3 additions & 0 deletions lab/reports/markup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@
padding-bottom: 4px;
background-color: #aaa;
color: #ffffff;
/* Make table headers sticky. */
position: sticky;
top: 0;
}
</style>
"""
Expand Down

0 comments on commit 8bd054a

Please sign in to comment.