Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch table header design and add SITE_LEADERBOARD_DESCRIPTION setting #212

Merged
merged 3 commits into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions frx_challenges/frx_challenges/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,7 @@
}
},
}
SITE_LEADERBOARD_DESCRIPTION = ""

EVALUATION_DISPLAY_CONFIG = [
{
Expand Down
2 changes: 1 addition & 1 deletion frx_challenges/web/static/web/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ nav.navbar {
background-image: linear-gradient(90deg, #058d96 0%, #008a45 100%);
background-position: center center;
background-size: cover;
background-color: #2c5e77;
background-attachment: fixed;
}

.table th {
Expand Down
2 changes: 1 addition & 1 deletion frx_challenges/web/static/webpack-output/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -11662,7 +11662,7 @@ nav.navbar {
background-image: linear-gradient(90deg, #058d96 0%, #008a45 100%);
background-position: center center;
background-size: cover;
background-color: #2c5e77;
background-attachment: fixed;
}
.table th {
color: #fff;
Expand Down
2 changes: 1 addition & 1 deletion frx_challenges/web/templates/submission/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ <h1>My Submissions</h1>
<div class="container py-2">
<div class="row py-2">
<div class="table-responsive">
<table id="results" class="table table-striped responsive">
<table id="results" class="table table-striped">
<thead>
<tr>
<th scope="col">Name</th>
Expand Down