mirror of
https://github.com/Fluffy-Bean/GameExpo23.git
synced 2025-05-24 03:44:52 +00:00
Blur search bar on suggestion select
This commit is contained in:
parent
d26d8cb021
commit
7740623547
3 changed files with 12 additions and 8 deletions
|
@ -56,6 +56,7 @@ function getSearch() {
|
|||
event.preventDefault();
|
||||
search = document.querySelector('.search > input');
|
||||
search.value = user.toString();
|
||||
search.blur();
|
||||
}
|
||||
hint.appendChild(el);
|
||||
});
|
||||
|
|
|
@ -74,8 +74,11 @@ body
|
|||
|
||||
> tbody
|
||||
> tr
|
||||
height: 2.75rem
|
||||
vertical-align: middle
|
||||
|
||||
> th
|
||||
padding: 0.6rem
|
||||
padding: 0.5rem
|
||||
background-image: linear-gradient(to bottom, RGBA($white, 0.05), transparent)
|
||||
text-align: left
|
||||
font-weight: bolder
|
||||
|
|
|
@ -32,11 +32,11 @@
|
|||
<div class="table">
|
||||
<table>
|
||||
<tr>
|
||||
<th>Position</th>
|
||||
<th>Player</th>
|
||||
<th>Time</th>
|
||||
<th>Scored at</th>
|
||||
<th>Version</th>
|
||||
<th></th>
|
||||
<th>Name</th>
|
||||
<th>Time Set</th>
|
||||
<th>Submitted</th>
|
||||
<!-- <th>Game</th> -->
|
||||
</tr>
|
||||
{% for score in scores %}
|
||||
<tr>
|
||||
|
@ -57,8 +57,8 @@
|
|||
{% endif %}
|
||||
|
||||
<td>{{ score.score }}</td>
|
||||
<td>{{ score.scored_at }}</td>
|
||||
<td>{{ score.version }}</td>
|
||||
<td>{{ score.scored_at.strftime('%Y-%m-%d') }}</td>
|
||||
<!-- <td>{{ score.version }}</td> -->
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue