Bug 30952: Fix table styling (cell borders, striping)

Issue #22

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Julian Maurice 2022-09-15 13:56:49 +02:00 committed by Tomas Cohen Arazi
parent 8db5e94990
commit 1f4f27ae93
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F
3 changed files with 7 additions and 2 deletions

View file

@ -3,7 +3,7 @@ $font-monospace: "Courier New", Courier, monospace;
$language-footer-min-height: 20px;
$table-border-color: #BCBCBC;
$table-header-background: #E8E8E8;
$table-odd-row: #F9F9F9;
$table-odd-row: #f3f4f4;
$nav-menu-bullet: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='5' viewBox='0 0 25 25'%3E%3Cpath fill='%23999' d='M9.66.95h4.56l9.21 11.85-9.21 10.53H9.66l5.08-10.53z'/%3E%3C/svg%3E");

View file

@ -146,7 +146,11 @@ table {
td,
th {
padding: .2em .9em;
border: 1px solid $table-border-color;
border-left: 1px solid $table-border-color;
&:first-child {
border-left: none;
}
}
td {

View file

@ -3532,6 +3532,7 @@ code {
}
.tab-content {
background-color: #fff;
border: 3px solid #418940;
border-radius: 4px;
padding: 1em;