grundprinzip commented on code in PR #44096:
URL: https://github.com/apache/spark/pull/44096#discussion_r1411279132
##########
docs/css/custom.css:
##########
@@ -1111,5 +1111,18 @@ img {
table {
width: 100%;
overflow-wrap: normal;
+ border-collapse: collapse; /* Ensures that the borders collapse into a
single border */
}
+table th, table td {
+ border: 1px solid #cccccc; /* Adds a border to each table header and data
cell */
Review Comment:
why dropping the striped this is exactly what the bootstrap theme already
provides us.
The easier way would be simply to
```
.table {
border-collapse: collapse;
border: 1px solid #ccc
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]