Skip to content

Commit

Permalink
theme-customs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DiegoAndresCortes committed Jul 6, 2024
1 parent f7a89ea commit a201e59
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions MessageIndex.template.php
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,8 @@ function_exists('template_bi_' . $board['type'] . '_children') ? call_user_func(
</div><!-- .topic_info -->
<div class="topic_stats">
<p>
', $txt['replies'], ': ', $topic['replies'], '<br>
', $txt['views'], ': ', $topic['views'], '
<strong>', $topic['replies'], '</strong> ', $txt['replies'], '<br>
<strong>', $topic['views'], '</strong> ', $txt['views'], '
</p>
</div>
<div class="topic_lastpost">
Expand Down
10 changes: 6 additions & 4 deletions css/compat/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ body {
flex-direction: column;
font-family: var(--body-font-family);
font-size: clamp(var(--body-font-size-min), var(--body-font-size), var(--body-font-size-max));
line-height: 1.2;
margin: 0;
min-height: 100dvh;
padding: 0;
Expand Down Expand Up @@ -3317,6 +3318,7 @@ div#manage_boards dl dd textarea[name=desc] {
/* BoardIndex */
/* This place covers board places (boardindex/messageindex) */
.board_container {
--window-border-width: 0 1px 1px;
align-items: center;
background: var(--window-bg);
border-color: var(--window-border-color);
Expand All @@ -3328,8 +3330,8 @@ div#manage_boards dl dd textarea[name=desc] {
grid-template-columns: 70px 1fr 12% 28%;
padding-inline: .75em;
}
.board_container:not(:first-child) {
--window-border-width: 0 1px 1px;
.board_container:first-child {
--window-border-width: 1px;
}
.board_container > :where(div) {
padding-block: .5em;
Expand Down Expand Up @@ -3399,7 +3401,7 @@ div#manage_boards dl dd textarea[name=desc] {
.board_stats p {
border: none;
text-align: right;
font-weight: 600;
font-weight: 400;
}
.board_lastpost {
align-items: center;
Expand Down Expand Up @@ -3613,7 +3615,7 @@ div#manage_boards dl dd textarea[name=desc] {
border: none;
text-align: right;
font-size: .8em;
font-weight: 600;
font-weight: 400;
}
.topic_lastpost {
align-items: center;
Expand Down

0 comments on commit a201e59

Please sign in to comment.