Fixed table rounding, partially

Update backgrounds.php, intro.php, and 9 more files...
This commit is contained in:
2024-11-23 17:59:48 +01:00
parent 2d1b2eb8fd
commit 5f3398176a
11 changed files with 38 additions and 33 deletions

View File

@@ -26,7 +26,7 @@ table.stylish {
// It will look like utter shit when rounded on firefox because its rendering engine cannot clip rounded corners apparently.
// I guess that's what being at less than 3% of the market share does to you and your ability to care about basic shit.
&.border {
background-color: #{$color-border-main};
//background-color: #{$color-border-main};
}
}

View File

@@ -2,7 +2,10 @@
/* Site > Tables */
table.stylish {
.table-stylish {
border-collapse: separate;
overflow: hidden;
th {
font-weight: bold;
}
@@ -10,7 +13,7 @@ table.stylish {
tr {
background-color: #{$color-background-table-dual};
}
tr:not(:last-of-type), th {
border-bottom: 1.5px solid #{$color-table-border};
}
@@ -22,6 +25,7 @@ table.stylish {
td:not(:last-of-type), th:not(:last-of-type) {
border-right: 1.5px solid #{$color-table-border};
}
// See 'site/border.scss' for border fix.
// Remark: Tables can be rounded if their parent is.
// Thank the modern web for that...
}