amélioration du focus sur le jour d'hui
This commit is contained in:
parent
a578e3d70c
commit
a49f68cf83
@ -171,10 +171,14 @@ footer {
|
|||||||
#calendar {
|
#calendar {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
scroll-snap-type: both mandatory;
|
||||||
|
|
||||||
.grid {
|
.grid {
|
||||||
grid-template-columns: repeat(auto-fit, minmax(0%, 1fr));
|
grid-template-columns: repeat(auto-fit, minmax(0%, 1fr));
|
||||||
min-width: 1500px;
|
min-width: 1500px;
|
||||||
|
article {
|
||||||
|
scroll-snap-align: start;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
.grid.week-in-month {
|
.grid.week-in-month {
|
||||||
|
@ -8,6 +8,17 @@
|
|||||||
{% with "date-"|add:daytag as daytag %}
|
{% with "date-"|add:daytag as daytag %}
|
||||||
|
|
||||||
<article class="day{{ day|calendar_classes:fixed_style }}" id="{{ daytag }}">
|
<article class="day{{ day|calendar_classes:fixed_style }}" id="{{ daytag }}">
|
||||||
|
{% if day.is_today %}
|
||||||
|
<script>
|
||||||
|
document.addEventListener("DOMContentLoaded", function(e) {
|
||||||
|
agenda = document.getElementById("calendar");
|
||||||
|
todayArticle = document.getElementById("today").parentElement;
|
||||||
|
left = todayArticle.offsetLeft;
|
||||||
|
top = todayArticle.offsetTop;
|
||||||
|
agenda.scrollTo({top: top, left: left});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
{% endif %}
|
||||||
<header{% if day.is_today %} id="today"{% endif %}>
|
<header{% if day.is_today %} id="today"{% endif %}>
|
||||||
<{% if headers %}{{ headers }}{% else %}h2{% endif %}><a href="{{ day.date | url_day }}?{{ filter.get_url }}">{{ day.date | date:"l j" }}</a></{% if headers %}{{ headers }}{% else %}h2{% endif %}>
|
<{% if headers %}{{ headers }}{% else %}h2{% endif %}><a href="{{ day.date | url_day }}?{{ filter.get_url }}">{{ day.date | date:"l j" }}</a></{% if headers %}{{ headers }}{% else %}h2{% endif %}>
|
||||||
</header>
|
</header>
|
||||||
|
@ -34,11 +34,11 @@ Semaine du {{ calendar.calendar_days_list.0.date }}
|
|||||||
<div class="title"><h1>Semaine du {{ calendar.calendar_days_list.0.date }}</h1></div>
|
<div class="title"><h1>Semaine du {{ calendar.calendar_days_list.0.date }}</h1></div>
|
||||||
<div class="navigation">
|
<div class="navigation">
|
||||||
<div>
|
<div>
|
||||||
<a role="button" href="{% url 'week_view' calendar.previous_week.year calendar.previous_week|week %}?{{ filter.get_url }}#today">
|
<a role="button" href="{% url 'week_view' calendar.previous_week.year calendar.previous_week|week %}?{{ filter.get_url }}">
|
||||||
{% picto_from_name "chevron-left" %} précédente</a>
|
{% picto_from_name "chevron-left" %} précédente</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="right">
|
<div class="right">
|
||||||
<a role="button" href="{% url 'week_view' calendar.next_week.year calendar.next_week|week %}?{{ filter.get_url }}#today">suivante
|
<a role="button" href="{% url 'week_view' calendar.next_week.year calendar.next_week|week %}?{{ filter.get_url }}">suivante
|
||||||
{% picto_from_name "chevron-right" %}
|
{% picto_from_name "chevron-right" %}
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
@ -61,9 +61,9 @@ Semaine du {{ calendar.calendar_days_list.0.date }}
|
|||||||
{% if calendar.today_in_calendar %}
|
{% if calendar.today_in_calendar %}
|
||||||
<a role="button" href="{% url 'aujourdhui' %}?{{ filter.get_url }}">Aujourd'hui</a>
|
<a role="button" href="{% url 'aujourdhui' %}?{{ filter.get_url }}">Aujourd'hui</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<a role="button" href="{% url 'month_view' calendar.firstdate.year calendar.firstdate.month %}?{{ filter.get_url }}#week-{{ calendar.calendar_days_list.0.date.isocalendar.1 }}">{{ calendar.firstdate | date:"F o" }}</a>
|
<a role="button" href="{% url 'month_view' calendar.firstdate.year calendar.firstdate.month %}?{{ filter.get_url }}">{{ calendar.firstdate | date:"F o" }}</a>
|
||||||
{% if calendar.firstdate.month != calendar.lastdate.month %}
|
{% if calendar.firstdate.month != calendar.lastdate.month %}
|
||||||
<a role="button" href="{% url 'month_view' calendar.lastdate.year calendar.lastdate.month %}?{{ filter.get_url }}#week-{{ calendar.calendar_days_list.0.date.isocalendar.1 }}">{{ calendar.lastdate | date:"F o" }}</a>
|
<a role="button" href="{% url 'month_view' calendar.lastdate.year calendar.lastdate.month %}?{{ filter.get_url }}">{{ calendar.lastdate | date:"F o" }}</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</footer>
|
</footer>
|
||||||
</article>
|
</article>
|
||||||
|
@ -34,8 +34,8 @@
|
|||||||
<ul class="menu">
|
<ul class="menu">
|
||||||
<li><a href="{% url 'event_search' %}">Rechercher {% picto_from_name "search" %}</a></li>
|
<li><a href="{% url 'event_search' %}">Rechercher {% picto_from_name "search" %}</a></li>
|
||||||
<li><a href="{% url 'aujourdhui' %}">Aujourd'hui</a></li>
|
<li><a href="{% url 'aujourdhui' %}">Aujourd'hui</a></li>
|
||||||
<li><a href="{% url 'cette_semaine' %}#today">Cette semaine</a></li>
|
<li><a href="{% url 'cette_semaine' %}">Cette semaine</a></li>
|
||||||
<li><a href="{% url 'ce_mois_ci' %}#today">Ce mois-ci</a></li>
|
<li><a href="{% url 'ce_mois_ci' %}">Ce mois-ci</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<nav class="container-fluid">
|
<nav class="container-fluid">
|
||||||
|
Loading…
Reference in New Issue
Block a user