Skip to content
Snippets Groups Projects
Commit 7a3ee724 authored by Xayo's avatar Xayo :cat2:
Browse files

add "effect based" word breaking css class

[refs #102]
parent 505a6050
No related branches found
No related tags found
1 merge request!68add "effect based" word breaking css class
......@@ -4,9 +4,9 @@
<table class="table table-striped">
{% for akslot in slots %}
<tr>
<td><b><a href="{% url 'submit:ak_detail' event_slug=event.slug pk=akslot.ak.pk %}">{{ akslot.ak.name }}</a></b></td>
<td class="breakWord"><b><a href="{% url 'submit:ak_detail' event_slug=event.slug pk=akslot.ak.pk %}">{{ akslot.ak.name }}</a></b></td>
<td>{{ akslot.start | time:"H:i" }} - {{ akslot.end | time:"H:i" }}</td>
<td>{% if akslot.room and akslot.room.pk != '' %}
<td class="breakWord">{% if akslot.room and akslot.room.pk != '' %}
<a href="{% url 'plan:plan_room' event_slug=event.slug pk=akslot.room.pk %}">{{ akslot.room }}</a>
{% endif %}</td>
</tr>
......
......@@ -26,3 +26,7 @@
width: 150px;
}
.breakWord {
word-break: normal;
overflow-wrap: anywhere;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment