Skip to content
Snippets Groups Projects
Commit b07ba92c authored by Benjamin Hättasch's avatar Benjamin Hättasch
Browse files

Merge branch 'xayomer/akplanning-fork-102-ak-overflow-variant1'

parents c766973f f0393c34
No related branches found
No related tags found
1 merge request!68add "effect based" word breaking css class
Pipeline #13130 passed
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
<table class="table table-striped"> <table class="table table-striped">
{% for akslot in slots %} {% for akslot in slots %}
<tr> <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>{{ 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> <a href="{% url 'plan:plan_room' event_slug=event.slug pk=akslot.room.pk %}">{{ akslot.room }}</a>
{% endif %}</td> {% endif %}</td>
</tr> </tr>
......
...@@ -14,4 +14,4 @@ AKPlanning is currently being maintained by: ...@@ -14,4 +14,4 @@ AKPlanning is currently being maintained by:
Further contributions in the form of code, testing, documentation etc. were made by: Further contributions in the form of code, testing, documentation etc. were made by:
* * R. Zameitat [xayomer](https://gitlab.fachschaften.org/xayomer)
...@@ -26,3 +26,7 @@ ...@@ -26,3 +26,7 @@
width: 150px; 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