Skip to content

Commit

Permalink
CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Oct 25, 2024
1 parent 983bc98 commit b2d7a13
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions htdocs/theme/eldy/global.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -4294,6 +4294,10 @@
table.liste:not(.listwithfilterbefore) tr.liste_titre_filter:first-child th:first-child {
border-top-left-radius: <?php echo $borderradius; ?>px;
}
table.liste:not(.listwithfilterbefore) tr.liste_titre_filter:first-child td:last-child,
table.liste:not(.listwithfilterbefore) tr.liste_titre_filter:first-child th:last-child {
border-top-right-radius: <?php echo $borderradius; ?>px;
}
div.liste_titre_bydiv {
border-top-left-radius: <?php echo $borderradius; ?>px;
border-top-right-radius: <?php echo $borderradius; ?>px;
Expand Down
8 changes: 6 additions & 2 deletions htdocs/theme/md/style.css.php
Original file line number Diff line number Diff line change
Expand Up @@ -4397,10 +4397,14 @@
border-bottom-right-radius: <?php echo $borderradius; ?>px;
}

table.liste tr.liste_titre_filter:first-child td:first-child,
table.liste tr.liste_titre_filter:first-child th:first-child {
table.liste:not(.listwithfilterbefore) tr.liste_titre_filter:first-child td:first-child,
table.liste:not(.listwithfilterbefore) tr.liste_titre_filter:first-child th:first-child {
border-top-left-radius: <?php echo $borderradius; ?>px;
}
table.liste:not(.listwithfilterbefore) tr.liste_titre_filter:first-child td:last-child,
table.liste:not(.listwithfilterbefore) tr.liste_titre_filter:first-child th:last-child {
border-top-right-radius: <?php echo $borderradius; ?>px;
}
div.liste_titre_bydiv {
border-top-left-radius: <?php echo $borderradius; ?>px;
border-top-right-radius: <?php echo $borderradius; ?>px;
Expand Down

0 comments on commit b2d7a13

Please sign in to comment.