Skip to content
Snippets Groups Projects
Commit f3bbb9c4 authored by drscream's avatar drscream :eyeglasses:
Browse files

Merge branch 'weeman/fix-calendar-room-title' into 'develop'

Fix calendar room title

See merge request !673
parents c766250f 5034ce0b
Branches
No related tags found
No related merge requests found
......@@ -17,10 +17,10 @@
{% for room, room_events in events.rooms_with_events %}
<div class="hub-fahrplan__room">
{% if public %}
<h2 class="hub-fahrplan__title">// {{room.name}}</h2>
<h2 class="hub-fahrplan__title" title="{{ room.name }}">// {{room.name}}</h2>
{% else %}
<a class="text-decoration-none a" href="{{ url('plainui:room', room_slug=room.slug) }}">
<h2 class="hub-fahrplan__title">// {{room.name}}</h2>
<h2 class="hub-fahrplan__title" title="{{ room.name }}">// {{room.name}}</h2>
</a>
{% endif %}
{% for entry in room_events %}
......
......@@ -17,6 +17,9 @@ $public-fahrplan-body-padding: .7rem;
font-family: "Beon";
font-size: 2.1875rem; // 35px
line-height: 1;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
.active {
color: $secondary;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment