Angles arrondis OK et tableau aligné

This commit is contained in:
Colin Maudry
2026-01-29 18:48:30 +01:00
parent 1fb18bcf6f
commit 307e3379e0
2 changed files with 31 additions and 10 deletions
+31 -9
View File
@@ -170,10 +170,18 @@ p.version > a {
}
/* Dash Table Overrides */
dash-table-container dash-spreadsheet-menu table.cell-table {
margin-right: 8px;
margin-lef: 8px;
}
table.cell-table,
table.cell-table tr {
border-color: #fff;
padding: 0;
border-collapse: separate !important;
/* Required for border-radius */
border-spacing: 0;
}
.dash-table-container p {
@@ -190,22 +198,36 @@ table.cell-table tr {
text-align: left;
font-weight: 500;
padding-right: 12px;
border-color: rgb(179, 56, 33) !important;
border: 1px solid rgb(179, 56, 33) !important;
background-color: rgb(179, 56, 33);
border-style: solid;
border-width: 1px;
}
table.cell-table tr:first-of-type th:first-of-type {
border-top-left-radius: 3px;
/* High specificity to override Dash defaults and .dash-header class */
.dash-table-container
.dash-spreadsheet-container
.dash-spreadsheet-inner
table.cell-table
tr:first-of-type
th.dash-header {
border-bottom: none !important;
}
table.cell-table tr:first-of-type th:last-of-type {
border-top-right-radius: 3px;
.dash-table-container
.dash-spreadsheet-container
.dash-spreadsheet-inner
table.cell-table
tr:first-of-type
th.dash-header:first-of-type {
border-top-left-radius: 3px !important;
}
.dash-table-container .dash-spreadsheet-container .dash-spreadsheet-inner td {
padding-left: 8px;
.dash-table-container
.dash-spreadsheet-container
.dash-spreadsheet-inner
table.cell-table
tr:first-of-type
th.dash-header:last-of-type {
border-top-right-radius: 3px !important;
}
/* Dash Filters */