1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-04-14 17:06:46 +00:00

Fix print views

This commit is contained in:
2026-01-09 23:06:24 -05:00
parent 3576445a1c
commit af1f8df4b6
3 changed files with 15 additions and 7 deletions

View File

@@ -11,7 +11,7 @@ table.smallText tr td { font-size: 10px; }
min-width: 150px;
min-height: 50px;
/*background-color: #ddd;*/
border: 1px solid #ddd;
border: 1px solid #000; /* Dark border so boxes stay visible when printed */
margin: 5px;
}
@@ -56,7 +56,7 @@ table.smallText tr td { font-size: 10px; }
}
.game-top {
border-bottom:1px solid #ddd;
border-bottom:1px solid #000;
padding: 2px;
min-height: 12px;
}
@@ -77,13 +77,13 @@ table.smallText tr td { font-size: 10px; }
}
.bracket-winner {
border-bottom:1px solid #ddd;
border-bottom:1px solid #000;
padding: 2px;
min-height: 12px;
}
.game-bottom {
border-top:1px solid #ddd;
border-top:1px solid #000;
padding: 2px;
min-height: 12px;
}
@@ -131,4 +131,4 @@ table.smallText tr td { font-size: 10px; }
<% elsif @tournament.tournament_type.include? "Regular Double Elimination" %>
<%= render 'double_elimination_bracket' %>
<% end %>