Private
Public Access
1
0

fixing upload table

This commit is contained in:
Sander Roosendaal
2021-09-28 08:17:08 +02:00
parent e70cca7f37
commit eec45e8357
3 changed files with 9 additions and 5 deletions

View File

@@ -156,7 +156,7 @@
<li class="maxheight grid_4">
{% if workouts %}
<table width="100%" class="listtable shortpadded">
<table width="100%" class="listtable shortpadded" style="word-break: break-all">
<thead>
<tr>
<th> R</th>

View File

@@ -90,7 +90,7 @@
<h2>Challenge Information</h2>
</p>
<p>
<table class="listtable shortpadded" width="100%>
<table class="listtable shortpadded" width="100%">
<tbody>
{% if race.sessiontype == 'race' %}
<tr>
@@ -186,7 +186,7 @@
{% endif %}
<p>
<table class="listtable shortpadded">
<table class="listtable shortpadded" style="word-break: break-all">
<thead>
<tr>
<th>&nbsp;</th>
@@ -314,6 +314,10 @@
<a href="/rowers/workout/{{ result.workoutid|encode }}/view/entry/{{ result.id }}/">
<i class="fas fa-search-plus fa-fw"></i></a>
</td>
{% if race.manager == request.user %}
<td>&nbsp;</td>
<td>&nbsp;</td>
{% endif %}
</tr>
{% endfor %}
{% for result in dns %}

View File

@@ -46,8 +46,8 @@ table {
border-collapse: collapse;
border-spacing: 0;
overflow-wrap: break-word;
table-layout: auto;
word-break: break-all;
table-layout: auto;
/* word-break: break-all; */
}
/* apply a natural box layout model to all elements, but allowing components to change */