Skip to content

Commit

Permalink
updated themeTemplate
Browse files Browse the repository at this point in the history
  • Loading branch information
remko48 committed Dec 19, 2023
1 parent 80c2a31 commit d32505e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pwa/src/templates/theme/ThemeTemplate.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,18 @@
font-family: var(--utrecht-table-header-font-family);
}

.tableHeader > tr > th {
border-inline-end-width: var(
--utrecht-table-header-cell-border-inline-end-width
);
border-inline-end-style: var(
--utrecht-table-header-cell-border-inline-end-style
);
border-inline-end-color: var(
--utrecht-table-header-cell-border-inline-end-color
);
}

.tableRow > * {
vertical-align: middle !important;
}
Expand All @@ -189,6 +201,12 @@
var(--utrecht-table-body-border-block-end-color);
}

.tableBody > tr > td {
border-inline-end-width: var(--utrecht-table-cell-border-inline-end-width);
border-inline-end-style: var(--utrecht-table-cell-border-inline-end-style);
border-inline-end-color: var(--utrecht-table-cell-border-inline-end-color);
}

.tableBody .tableRow:nth-child(odd) {
background-color: var(--utrecht-table-row-alternate-odd-background-color);
color: var(--utrecht-table-row-alternate-odd-color);
Expand Down Expand Up @@ -232,6 +250,13 @@
color: var(--conduction-card-wrapper-color) !important;
}

.cardContainer:hover .description {
color: var(
--conduction-card-wrapper-hover-color,
var(--conduction-card-wrapper-color)
) !important;
}

.secondaryNavContainer {
display: flex;
justify-content: flex-end;
Expand Down

0 comments on commit d32505e

Please sign in to comment.