Schedule tweaks etc (#80)

This commit is contained in:
Christopher Neugebauer 2016-12-08 19:56:43 +11:00 committed by Scott Bragg
parent 1ba1cf1a24
commit 9a21d2c781
3 changed files with 7 additions and 4 deletions

View file

@ -23,6 +23,7 @@
{{ slot.content.speakers|join:", " }} {{ slot.content.speakers|join:", " }}
</span> </span>
{% endif %} {% endif %}
{% elif slot.kind.label == "shortbreak" %}
{% else %} {% else %}
{% if slot.content_override.raw %} {% if slot.content_override.raw %}
{{ slot.content_override.rendered|safe }} {{ slot.content_override.rendered|safe }}

View file

@ -25,9 +25,7 @@
{% cache 600 "schedule-table" section.schedule.section %} {% cache 600 "schedule-table" section.schedule.section %}
{% for timetable in section.days %} {% for timetable in section.days %}
<h3>{{ section.schedule.section.name }} — {{ timetable.day.date|date:"l" }}, {{ timetable.day.date }}</h3> <h3>{{ section.schedule.section.name }} — {{ timetable.day.date|date:"l" }}, {{ timetable.day.date }}</h3>
<br />
{% include "symposion/schedule/_grid.html" %} {% include "symposion/schedule/_grid.html" %}
<br />
{% endfor %} {% endfor %}
{% endcache %} {% endcache %}
{% endfor %} {% endfor %}

View file

@ -1610,7 +1610,6 @@ table.alt tr:not(:last-of-type) {
/* Schedule timetable needs some more specific font sizes */ /* Schedule timetable needs some more specific font sizes */
.calendar td { .calendar td {
vertical-align: top;
font-size: 0.9vw; font-size: 0.9vw;
} }
@ -1619,6 +1618,7 @@ table.alt tr:not(:last-of-type) {
padding-top: 0.2rem; padding-top: 0.2rem;
padding-bottom: 0.625rem; padding-bottom: 0.625rem;
padding-right: 0.625rem; padding-right: 0.625rem;
vertical-align: middle;
} }
.calendar th { .calendar th {
@ -1635,10 +1635,14 @@ table.alt tr:not(:last-of-type) {
color: #fff ; color: #fff ;
} }
.slot-tutorial {
vertical-align: top;
}
.time { .time {
font-size: 0.5vw; font-size: 0.5vw;
line-height: 0.4; line-height: 0.4;
vertical-align: top; vertical-align: middle;
padding-top: 0.25rem; padding-top: 0.25rem;
} }