epfl-elements 5.5.0 → 5.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +479 -0
- package/assets/config/bootstrap-variables.scss +5 -3
- package/dist/components/atoms/alert/alert-types.twig +3 -3
- package/dist/components/atoms/alert/alert-unclosable.twig +3 -0
- package/dist/components/atoms/alert/alert.yml +7 -0
- package/dist/components/atoms/nav-lang/nav-lang.twig +1 -1
- package/dist/components/molecules/breadcrumb/breadcrumb-dropdown.twig +0 -1
- package/dist/components/molecules/breadcrumb/breadcrumb-tagged.twig +0 -1
- package/dist/components/molecules/form-group/form-group-valid.twig +13 -0
- package/dist/components/molecules/form-group/form-group.yml +2 -0
- package/dist/components/molecules/table-of-contents/table-of-contents-inline.twig +8 -0
- package/dist/components/molecules/table-of-contents/table-of-contents-multi-level.twig +14 -0
- package/dist/components/molecules/table-of-contents/table-of-contents.twig +9 -0
- package/dist/components/molecules/table-of-contents/table-of-contents.yml +13 -0
- package/dist/components/organisms/form/form.twig +1 -0
- package/dist/components/organisms/header/header-light-drawer.twig +7 -7
- package/dist/components/organisms/header/header-light-submenu.twig +39 -0
- package/dist/components/organisms/header/header-light.twig +3 -16
- package/dist/components/organisms/header/header.yml +13 -0
- package/dist/components/pages/event-detail/event-detail.twig +1 -1
- package/dist/components/pages/event-list/event-list.twig +16 -16
- package/dist/components/pages/facultes/facultes.twig +1 -1
- package/dist/components/pages/news-homepage/news-homepage.twig +2 -3
- package/dist/css/elements.css +130 -36
- package/dist/css/elements.min.css +1 -1
- package/dist/css/elements.min.css.map +1 -1
- package/dist/css/reader.css +2 -1
- package/dist/css/reader.min.css +1 -1
- package/dist/css/reader.min.css.map +1 -1
- package/dist/css/vendors.min.css +2 -2
- package/dist/js/elements.js +3275 -3255
- package/dist/js/elements.min.js +1 -1
- package/dist/js/elements.min.js.map +1 -1
- package/dist/js/reader.js +44739 -44544
- package/dist/js/reader.min.js +17 -17
- package/dist/js/reader.min.js.map +1 -1
- package/dist/js/spritemap.js +2 -2
- package/dist/js/vendors.min.js +1 -1
- package/dist/package.json +3 -3
- package/package.json +3 -3
- package/dist/components/molecules/map/map-overlay.twig +0 -7
- package/dist/components/molecules/map copy/map-overlay.twig +0 -7
- package/dist/components/molecules/map copy/map.twig +0 -5
- package/dist/components/molecules/map copy/map.yml +0 -20
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{% if language is not defined %}{% set language = 'fr' %}{% endif %}
|
|
2
|
+
{% if long_nav_lang is not defined %}{% set long_nav_lang = false %}{% endif %}
|
|
3
|
+
{% if nav_user is not defined %}{% set nav_user = false %}{% endif %}
|
|
4
|
+
{% set site_title = site_title|default('sub site name') %}
|
|
5
|
+
|
|
6
|
+
<header role="banner" class="header header-light">
|
|
7
|
+
<div class="header-light-content">
|
|
8
|
+
<a class="logo" href="https://www.epfl.ch">
|
|
9
|
+
<img src="svg/epfl-logo.svg" alt="Logo EPFL, École polytechnique fédérale de Lausanne" class="img-fluid">
|
|
10
|
+
</a>
|
|
11
|
+
<p class="site-title">
|
|
12
|
+
<a href="#">{{site_title}}</a>
|
|
13
|
+
</p>
|
|
14
|
+
<ul class="nav-header d-none d-xl-flex">
|
|
15
|
+
<li class="dropdown">
|
|
16
|
+
<button class="btn btn-link dropdown-toggle nav-item" type="button" id="dropdownMenuButton-1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" aria-controls="dropdownSubMenu-1">
|
|
17
|
+
Liste des options
|
|
18
|
+
</button>
|
|
19
|
+
<ul id="dropdownSubMenu-1" class="dropdown-menu" aria-labelledby="dropdownMenuButton-1">
|
|
20
|
+
<li class="dropdown-item"><a href="#">Option 1</a></li>
|
|
21
|
+
<li class="dropdown-item current-menu-item"><a href="#">Option 2</a></li>
|
|
22
|
+
<li class="dropdown-item"><a href="#">Option 3</a></li>
|
|
23
|
+
</ul>
|
|
24
|
+
</li>
|
|
25
|
+
</ul>
|
|
26
|
+
{% include '@molecules/search/search-mobile.twig' %}
|
|
27
|
+
{% include '@molecules/search/search.twig' %}
|
|
28
|
+
{% if nav_user %}
|
|
29
|
+
{% include '@atoms/nav-user/nav-user.twig' %}
|
|
30
|
+
{% endif %}
|
|
31
|
+
{% if long_nav_lang %}
|
|
32
|
+
{% include '@atoms/nav-lang/nav-lang.twig' %}
|
|
33
|
+
{% endif %}
|
|
34
|
+
{% if long_nav_lang == false %}
|
|
35
|
+
{% include '@atoms/nav-lang/nav-lang-short.twig' %}
|
|
36
|
+
{% endif %}
|
|
37
|
+
{% include '@atoms/nav-toggle-mobile/nav-toggle-mobile.twig' %}
|
|
38
|
+
</div>
|
|
39
|
+
</header>
|
|
@@ -11,25 +11,12 @@
|
|
|
11
11
|
<p class="site-title">
|
|
12
12
|
<a href="#">{{site_title}}</a>
|
|
13
13
|
</p>
|
|
14
|
-
<ul
|
|
15
|
-
{%
|
|
16
|
-
<li class="dropdown">
|
|
17
|
-
<button class="btn btn-link dropdown-toggle nav-item" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
18
|
-
Liste des options
|
|
19
|
-
</button>
|
|
20
|
-
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
|
|
21
|
-
<a class="dropdown-item" href="#">Option 1</a>
|
|
22
|
-
<a class="dropdown-item active" href="#">Option 2</a>
|
|
23
|
-
<a class="dropdown-item" href="#">Option 3</a>
|
|
24
|
-
</div>
|
|
25
|
-
</li>
|
|
26
|
-
{% else %}
|
|
27
|
-
{% for i in 1..5 %}
|
|
14
|
+
<ul class="nav-header d-none d-xl-flex">
|
|
15
|
+
{% for i in 1..5 %}
|
|
28
16
|
<li id="menu-item-{{ loop.index }}" {% if loop.index == 2 %} class="current-menu-item"{% endif %}>
|
|
29
17
|
<a class="nav-item" href="#">Page {{ i }}</a>
|
|
30
18
|
</li>
|
|
31
|
-
|
|
32
|
-
{% endif %}
|
|
19
|
+
{% endfor %}
|
|
33
20
|
</ul>
|
|
34
21
|
{% include '@molecules/search/search-mobile.twig' %}
|
|
35
22
|
{% include '@molecules/search/search.twig' %}
|
|
@@ -11,6 +11,19 @@ variants:
|
|
|
11
11
|
* EPFL logo should link to the main EPFL website (https://www.epfl.ch);
|
|
12
12
|
* Sub site name should link to the sub site homepage (e.g. https://actu.epfl.ch, https://people.epfl.ch, etc );
|
|
13
13
|
* Use `<p class="site-title">` for the sub site title rather than a `<h1>` tag – `<h1>` title should be placed in the page content instead.
|
|
14
|
+
- name: light-submenu
|
|
15
|
+
title: Header light with submenu
|
|
16
|
+
notes: |
|
|
17
|
+
* EPFL logo should link to the main EPFL website (https://www.epfl.ch);
|
|
18
|
+
* Sub site name should link to the sub site homepage (e.g. https://actu.epfl.ch, https://people.epfl.ch, etc );
|
|
19
|
+
* Use `<p class="site-title">` for the sub site title rather than a `<h1>` tag – `<h1>` title should be placed in the page content instead.
|
|
20
|
+
|
|
21
|
+
⚠️ **Be very careful with the use of ARIA for the submenu component** (remember: no ARIA is better than bad ARIA). The following attributes should be used:
|
|
22
|
+
* `aria-haspopup="true"`, `aria-expanded="false"` and `aria-controls="dropdownSubMenuID"` **on the submenu toggle button** (`.dropdown-toggle`).
|
|
23
|
+
* When the submenu is open, `aria-expanded` will automatically be set to `true`.
|
|
24
|
+
* `dropdownSubMenuID` must match the ID of `.dropdown-menu`.
|
|
25
|
+
* `aria-labelledby="dropdownMenuButton"` **on the submenu `<ul>` wrapper** (`.dropdown-menu`).
|
|
26
|
+
* `dropdownMenuButton` must match the ID of the submenu toggle button (`.dropdown-toggle`).
|
|
14
27
|
- name: light-drawer
|
|
15
28
|
title: Header light with drawer
|
|
16
29
|
notes: |
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
{% extends "@templates/base/base.twig" %}
|
|
4
4
|
|
|
5
5
|
{% block header %}
|
|
6
|
-
{% include '@organisms/header/header-light.twig' with { site_title: 'Event title'
|
|
6
|
+
{% include '@organisms/header/header-light-submenu.twig' with { site_title: 'Event title' } %}
|
|
7
7
|
{% endblock %}
|
|
8
8
|
|
|
9
9
|
{% block breadcrumb %}
|
|
@@ -10,16 +10,16 @@
|
|
|
10
10
|
<img src="svg/epfl-logo.svg" alt="Logo EPFL, École polytechnique fédérale de Lausanne" class="img-fluid">
|
|
11
11
|
</a>
|
|
12
12
|
<h1>Memento</h1>
|
|
13
|
-
<ul
|
|
13
|
+
<ul class="nav-header d-none d-xl-flex">
|
|
14
14
|
<li class="dropdown">
|
|
15
|
-
<button class="btn btn-link dropdown-toggle nav-item" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
15
|
+
<button class="btn btn-link dropdown-toggle nav-item" type="button" id="dropdownMenuButton-1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" aria-controls="dropdownSubMenu-1">
|
|
16
16
|
Mémentos
|
|
17
17
|
</button>
|
|
18
|
-
<
|
|
19
|
-
<
|
|
20
|
-
<
|
|
21
|
-
<
|
|
22
|
-
</
|
|
18
|
+
<ul id="dropdownSubMenu-1" class="dropdown-menu" aria-labelledby="dropdownMenuButton-1">
|
|
19
|
+
<li class="dropdown-item"><a href="#">Option 1</a></li>
|
|
20
|
+
<li class="dropdown-item current-menu-item"><a href="#">Option 2</a></li>
|
|
21
|
+
<li class="dropdown-item"><a href="#">Option 3</a></li>
|
|
22
|
+
</ul>
|
|
23
23
|
</li>
|
|
24
24
|
<li id="menu-item-{{ loop.index }}" {% if loop.index == 2 %} class="current-menu-item"{% endif %}>
|
|
25
25
|
<a class="nav-item" href="#">Annoncer un événement</a>
|
|
@@ -54,11 +54,11 @@
|
|
|
54
54
|
|
|
55
55
|
<div class="container mt-5">
|
|
56
56
|
<h3 class="h6">Prochains événements</h3>
|
|
57
|
-
|
|
57
|
+
|
|
58
58
|
<div class="events-filters mt-4">
|
|
59
|
-
|
|
59
|
+
|
|
60
60
|
<form action="" method="get">
|
|
61
|
-
|
|
61
|
+
|
|
62
62
|
{% include '@molecules/form-group/form-group-search.twig' %}
|
|
63
63
|
|
|
64
64
|
<div class="form-group form-group-select form-group-categories">
|
|
@@ -109,17 +109,17 @@
|
|
|
109
109
|
<option value="">Expert</option>
|
|
110
110
|
</select>
|
|
111
111
|
</div>
|
|
112
|
-
|
|
112
|
+
|
|
113
113
|
<div class="dropdown dropdown-date">
|
|
114
114
|
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Date</button>
|
|
115
115
|
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
|
|
116
116
|
{% include '@molecules/datepicker/datepicker.twig' %}
|
|
117
117
|
</div>
|
|
118
118
|
</div>
|
|
119
|
-
|
|
119
|
+
|
|
120
120
|
</form>
|
|
121
121
|
</div>
|
|
122
|
-
|
|
122
|
+
|
|
123
123
|
<div class="event-filter-tags mt-2">
|
|
124
124
|
<div class="tag-group">
|
|
125
125
|
<label for="">Filtres de recherche</label>
|
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
</div>
|
|
134
134
|
</div>
|
|
135
135
|
</div>
|
|
136
|
-
|
|
136
|
+
|
|
137
137
|
<div class="events-footer mt-3">
|
|
138
138
|
<div class="d-md-flex flex-md-row-reverse justify-content-md-between align-items-md-center">
|
|
139
139
|
<div class="events-links">
|
|
@@ -147,7 +147,7 @@
|
|
|
147
147
|
</div>
|
|
148
148
|
</div>
|
|
149
149
|
</div>
|
|
150
|
-
|
|
150
|
+
|
|
151
151
|
<div class="list-group list-events mt-4">
|
|
152
152
|
{% include '@molecules/list-group/list-group-event.twig' with { eventLocation: 'online_room', live_now: true } %}
|
|
153
153
|
{% include '@molecules/list-group/list-group-event.twig' with { eventLocation: 'online', live_now: true } %}
|
|
@@ -158,7 +158,7 @@
|
|
|
158
158
|
{% include '@molecules/list-group/list-group-event.twig' %}
|
|
159
159
|
{% endfor %}
|
|
160
160
|
</div>
|
|
161
|
-
|
|
161
|
+
|
|
162
162
|
</div>
|
|
163
163
|
{% endblock %}
|
|
164
164
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
{% set nav_aside_items = [{
|
|
5
5
|
label: "Facultés",
|
|
6
|
-
children: ["Architecture, Civil and Environmental Engineering ENAC", "Basic Sciences SB", "Engineering STI", "Computer and Communication Sciences IC", "Life Sciences SV", "Management of Technology CDM"
|
|
6
|
+
children: ["Architecture, Civil and Environmental Engineering ENAC", "Basic Sciences SB", "Engineering STI", "Computer and Communication Sciences IC", "Life Sciences SV", "Management of Technology CDM"]
|
|
7
7
|
}] %}
|
|
8
8
|
{% set nav_aside_active = 0 %}
|
|
9
9
|
|
|
@@ -4,9 +4,8 @@
|
|
|
4
4
|
{% extends "@templates/base/base.twig" %}
|
|
5
5
|
|
|
6
6
|
{% block header %}
|
|
7
|
-
{% include '@organisms/header/header-light.twig' with {
|
|
8
|
-
site_title: 'Actu'
|
|
9
|
-
dropdown: true
|
|
7
|
+
{% include '@organisms/header/header-light-submenu.twig' with {
|
|
8
|
+
site_title: 'Actu'
|
|
10
9
|
} %}
|
|
11
10
|
{% endblock %}
|
|
12
11
|
|
package/dist/css/elements.css
CHANGED
|
@@ -4074,7 +4074,7 @@ a.badge-tertiary:focus, a.badge-tertiary.focus {
|
|
|
4074
4074
|
}
|
|
4075
4075
|
|
|
4076
4076
|
.alert-link {
|
|
4077
|
-
font-weight:
|
|
4077
|
+
font-weight: 400;
|
|
4078
4078
|
}
|
|
4079
4079
|
|
|
4080
4080
|
.alert-dismissible {
|
|
@@ -11121,7 +11121,12 @@ button.tag.tag-plain:focus .remove {
|
|
|
11121
11121
|
border-top-color: #e60000;
|
|
11122
11122
|
}
|
|
11123
11123
|
.alert-primary .alert-link {
|
|
11124
|
-
color: #
|
|
11124
|
+
color: #212121;
|
|
11125
|
+
text-decoration-color: #ff0000;
|
|
11126
|
+
}
|
|
11127
|
+
.alert-primary .alert-link:hover, .alert-primary .alert-link:focus, .alert-primary .alert-link:active, .alert-primary .alert-link:visited {
|
|
11128
|
+
color: #ff0000;
|
|
11129
|
+
text-decoration-color: #212121;
|
|
11125
11130
|
}
|
|
11126
11131
|
|
|
11127
11132
|
.alert-secondary {
|
|
@@ -11131,7 +11136,12 @@ button.tag.tag-plain:focus .remove {
|
|
|
11131
11136
|
border-top-color: #f2f2f2;
|
|
11132
11137
|
}
|
|
11133
11138
|
.alert-secondary .alert-link {
|
|
11134
|
-
color: #
|
|
11139
|
+
color: #212121;
|
|
11140
|
+
text-decoration-color: #fff;
|
|
11141
|
+
}
|
|
11142
|
+
.alert-secondary .alert-link:hover, .alert-secondary .alert-link:focus, .alert-secondary .alert-link:active, .alert-secondary .alert-link:visited {
|
|
11143
|
+
color: #fff;
|
|
11144
|
+
text-decoration-color: #212121;
|
|
11135
11145
|
}
|
|
11136
11146
|
|
|
11137
11147
|
.alert-success {
|
|
@@ -11141,7 +11151,12 @@ button.tag.tag-plain:focus .remove {
|
|
|
11141
11151
|
border-top-color: #71bd1e;
|
|
11142
11152
|
}
|
|
11143
11153
|
.alert-success .alert-link {
|
|
11144
|
-
color: #
|
|
11154
|
+
color: #212121;
|
|
11155
|
+
text-decoration-color: #7ed321;
|
|
11156
|
+
}
|
|
11157
|
+
.alert-success .alert-link:hover, .alert-success .alert-link:focus, .alert-success .alert-link:active, .alert-success .alert-link:visited {
|
|
11158
|
+
color: #7ed321;
|
|
11159
|
+
text-decoration-color: #212121;
|
|
11145
11160
|
}
|
|
11146
11161
|
|
|
11147
11162
|
.alert-info {
|
|
@@ -11151,7 +11166,12 @@ button.tag.tag-plain:focus .remove {
|
|
|
11151
11166
|
border-top-color: #3483de;
|
|
11152
11167
|
}
|
|
11153
11168
|
.alert-info .alert-link {
|
|
11154
|
-
color: #
|
|
11169
|
+
color: #212121;
|
|
11170
|
+
text-decoration-color: #4a90e2;
|
|
11171
|
+
}
|
|
11172
|
+
.alert-info .alert-link:hover, .alert-info .alert-link:focus, .alert-info .alert-link:active, .alert-info .alert-link:visited {
|
|
11173
|
+
color: #4a90e2;
|
|
11174
|
+
text-decoration-color: #212121;
|
|
11155
11175
|
}
|
|
11156
11176
|
|
|
11157
11177
|
.alert-warning {
|
|
@@ -11161,7 +11181,12 @@ button.tag.tag-plain:focus .remove {
|
|
|
11161
11181
|
border-top-color: #f39c0b;
|
|
11162
11182
|
}
|
|
11163
11183
|
.alert-warning .alert-link {
|
|
11164
|
-
color: #
|
|
11184
|
+
color: #212121;
|
|
11185
|
+
text-decoration-color: #f5a623;
|
|
11186
|
+
}
|
|
11187
|
+
.alert-warning .alert-link:hover, .alert-warning .alert-link:focus, .alert-warning .alert-link:active, .alert-warning .alert-link:visited {
|
|
11188
|
+
color: #f5a623;
|
|
11189
|
+
text-decoration-color: #212121;
|
|
11165
11190
|
}
|
|
11166
11191
|
|
|
11167
11192
|
.alert-danger {
|
|
@@ -11171,7 +11196,12 @@ button.tag.tag-plain:focus .remove {
|
|
|
11171
11196
|
border-top-color: #e60000;
|
|
11172
11197
|
}
|
|
11173
11198
|
.alert-danger .alert-link {
|
|
11174
|
-
color: #
|
|
11199
|
+
color: #212121;
|
|
11200
|
+
text-decoration-color: #ff0000;
|
|
11201
|
+
}
|
|
11202
|
+
.alert-danger .alert-link:hover, .alert-danger .alert-link:focus, .alert-danger .alert-link:active, .alert-danger .alert-link:visited {
|
|
11203
|
+
color: #ff0000;
|
|
11204
|
+
text-decoration-color: #212121;
|
|
11175
11205
|
}
|
|
11176
11206
|
|
|
11177
11207
|
.alert-light {
|
|
@@ -11181,7 +11211,12 @@ button.tag.tag-plain:focus .remove {
|
|
|
11181
11211
|
border-top-color: #d9d9d9;
|
|
11182
11212
|
}
|
|
11183
11213
|
.alert-light .alert-link {
|
|
11184
|
-
color: #
|
|
11214
|
+
color: #212121;
|
|
11215
|
+
text-decoration-color: #e6e6e6;
|
|
11216
|
+
}
|
|
11217
|
+
.alert-light .alert-link:hover, .alert-light .alert-link:focus, .alert-light .alert-link:active, .alert-light .alert-link:visited {
|
|
11218
|
+
color: #e6e6e6;
|
|
11219
|
+
text-decoration-color: #212121;
|
|
11185
11220
|
}
|
|
11186
11221
|
|
|
11187
11222
|
.alert-dark {
|
|
@@ -11191,7 +11226,12 @@ button.tag.tag-plain:focus .remove {
|
|
|
11191
11226
|
border-top-color: #141414;
|
|
11192
11227
|
}
|
|
11193
11228
|
.alert-dark .alert-link {
|
|
11194
|
-
color: #
|
|
11229
|
+
color: #212121;
|
|
11230
|
+
text-decoration-color: #212121;
|
|
11231
|
+
}
|
|
11232
|
+
.alert-dark .alert-link:hover, .alert-dark .alert-link:focus, .alert-dark .alert-link:active, .alert-dark .alert-link:visited {
|
|
11233
|
+
color: #212121;
|
|
11234
|
+
text-decoration-color: #212121;
|
|
11195
11235
|
}
|
|
11196
11236
|
|
|
11197
11237
|
.alert-tertiary {
|
|
@@ -11201,7 +11241,12 @@ button.tag.tag-plain:focus .remove {
|
|
|
11201
11241
|
border-top-color: #005d67;
|
|
11202
11242
|
}
|
|
11203
11243
|
.alert-tertiary .alert-link {
|
|
11204
|
-
color: #
|
|
11244
|
+
color: #212121;
|
|
11245
|
+
text-decoration-color: #007480;
|
|
11246
|
+
}
|
|
11247
|
+
.alert-tertiary .alert-link:hover, .alert-tertiary .alert-link:focus, .alert-tertiary .alert-link:active, .alert-tertiary .alert-link:visited {
|
|
11248
|
+
color: #007480;
|
|
11249
|
+
text-decoration-color: #212121;
|
|
11205
11250
|
}
|
|
11206
11251
|
|
|
11207
11252
|
.alert-success:before {
|
|
@@ -11902,9 +11947,6 @@ header.collapse-title + .collapse-item:before {
|
|
|
11902
11947
|
height: 2.5rem;
|
|
11903
11948
|
padding: 0.5rem 1.5rem 0.5rem 0.625rem;
|
|
11904
11949
|
}
|
|
11905
|
-
.nav-lang .icon {
|
|
11906
|
-
display: none;
|
|
11907
|
-
}
|
|
11908
11950
|
}
|
|
11909
11951
|
.nav-toggle-mobile {
|
|
11910
11952
|
display: flex;
|
|
@@ -12253,13 +12295,13 @@ ol ul > li:before {
|
|
|
12253
12295
|
.list-unstyled li,
|
|
12254
12296
|
.list-inline li,
|
|
12255
12297
|
.nav li,
|
|
12256
|
-
nav li {
|
|
12298
|
+
nav:not(.table-of-contents) li {
|
|
12257
12299
|
padding-left: 0;
|
|
12258
12300
|
}
|
|
12259
12301
|
.list-unstyled li:before,
|
|
12260
12302
|
.list-inline li:before,
|
|
12261
12303
|
.nav li:before,
|
|
12262
|
-
nav li:before {
|
|
12304
|
+
nav:not(.table-of-contents) li:before {
|
|
12263
12305
|
content: none;
|
|
12264
12306
|
}
|
|
12265
12307
|
|
|
@@ -12425,9 +12467,17 @@ a.research-icon:hover, a.research-icon:focus {
|
|
|
12425
12467
|
}
|
|
12426
12468
|
}
|
|
12427
12469
|
|
|
12428
|
-
.custom-select
|
|
12470
|
+
.custom-select,
|
|
12471
|
+
.ms-choice {
|
|
12429
12472
|
border-color: #8e8e8e;
|
|
12430
12473
|
}
|
|
12474
|
+
.custom-select:focus,
|
|
12475
|
+
.ms-choice:focus {
|
|
12476
|
+
border-color: #212121;
|
|
12477
|
+
box-shadow: none !important;
|
|
12478
|
+
outline: 2px solid #707070;
|
|
12479
|
+
outline-offset: 2px;
|
|
12480
|
+
}
|
|
12431
12481
|
|
|
12432
12482
|
.ms-offscreen {
|
|
12433
12483
|
clip: rect(0 0 0 0) !important;
|
|
@@ -12465,11 +12515,6 @@ a.research-icon:hover, a.research-icon:focus {
|
|
|
12465
12515
|
line-height: 1.5;
|
|
12466
12516
|
color: #212121;
|
|
12467
12517
|
}
|
|
12468
|
-
.ms-choice:focus {
|
|
12469
|
-
border-color: #212121;
|
|
12470
|
-
box-shadow: inset 0 1px 2px rgba(33, 33, 33, 0.075), 0 0 5px rgba(33, 33, 33, 0.5);
|
|
12471
|
-
outline: none;
|
|
12472
|
-
}
|
|
12473
12518
|
.ms-choice.disabled {
|
|
12474
12519
|
background-color: #d5d5d5;
|
|
12475
12520
|
background-image: none;
|
|
@@ -13350,6 +13395,8 @@ figcaption {
|
|
|
13350
13395
|
color: #fff;
|
|
13351
13396
|
box-shadow: none !important;
|
|
13352
13397
|
border-radius: 0;
|
|
13398
|
+
margin-top: 0.25rem;
|
|
13399
|
+
margin-bottom: 0.25rem;
|
|
13353
13400
|
}
|
|
13354
13401
|
.search-mobile .form-control::-moz-placeholder, .search-mobile .selectize-control .selectize-input::-moz-placeholder, .selectize-control .search-mobile .selectize-input::-moz-placeholder {
|
|
13355
13402
|
color: #c1c1c1;
|
|
@@ -13357,6 +13404,10 @@ figcaption {
|
|
|
13357
13404
|
.search-mobile .form-control::placeholder, .search-mobile .selectize-control .selectize-input::placeholder, .selectize-control .search-mobile .selectize-input::placeholder {
|
|
13358
13405
|
color: #c1c1c1;
|
|
13359
13406
|
}
|
|
13407
|
+
.search-mobile .form-control:focus-visible, .search-mobile .selectize-control .selectize-input:focus-visible, .selectize-control .search-mobile .selectize-input:focus-visible {
|
|
13408
|
+
outline-color: white !important;
|
|
13409
|
+
outline-offset: 0;
|
|
13410
|
+
}
|
|
13360
13411
|
.search-mobile .input-group-text {
|
|
13361
13412
|
background: #212121;
|
|
13362
13413
|
border-radius: 0;
|
|
@@ -14215,11 +14266,6 @@ article aside {
|
|
|
14215
14266
|
top: 2px;
|
|
14216
14267
|
}
|
|
14217
14268
|
|
|
14218
|
-
.invalid-label,
|
|
14219
|
-
.form-group .invalid-label {
|
|
14220
|
-
color: #ff0000;
|
|
14221
|
-
}
|
|
14222
|
-
|
|
14223
14269
|
.search-container {
|
|
14224
14270
|
position: relative;
|
|
14225
14271
|
}
|
|
@@ -14241,6 +14287,33 @@ article aside {
|
|
|
14241
14287
|
color: #212121;
|
|
14242
14288
|
}
|
|
14243
14289
|
|
|
14290
|
+
.form-control.is-valid, .selectize-control .is-valid.selectize-input {
|
|
14291
|
+
border-color: #699b32;
|
|
14292
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath fill=%27%23699b32%27 d=%27M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z%27/%3e%3c/svg%3e");
|
|
14293
|
+
}
|
|
14294
|
+
|
|
14295
|
+
.valid-label,
|
|
14296
|
+
.valid-feedback,
|
|
14297
|
+
.form-group .valid-label {
|
|
14298
|
+
color: #487915;
|
|
14299
|
+
}
|
|
14300
|
+
|
|
14301
|
+
.invalid-label,
|
|
14302
|
+
.invalid-feedback,
|
|
14303
|
+
.form-group .invalid-label {
|
|
14304
|
+
color: #c73333;
|
|
14305
|
+
}
|
|
14306
|
+
|
|
14307
|
+
.form-control.is-valid,
|
|
14308
|
+
.selectize-control .is-valid.selectize-input {
|
|
14309
|
+
border-color: #699b32 !important;
|
|
14310
|
+
}
|
|
14311
|
+
|
|
14312
|
+
.form-control.is-invalid,
|
|
14313
|
+
.selectize-control .is-invalid.selectize-input {
|
|
14314
|
+
border-color: #ff0000 !important;
|
|
14315
|
+
}
|
|
14316
|
+
|
|
14244
14317
|
.gallery.is-fullscreen {
|
|
14245
14318
|
z-index: 1120 !important; /* eslint disable line */
|
|
14246
14319
|
max-width: none;
|
|
@@ -15326,6 +15399,16 @@ ol.flickity-page-dots li:before {
|
|
|
15326
15399
|
position: absolute;
|
|
15327
15400
|
}
|
|
15328
15401
|
|
|
15402
|
+
.table-of-contents ul:not(.list-inline) li:before {
|
|
15403
|
+
content: "";
|
|
15404
|
+
}
|
|
15405
|
+
.table-of-contents ol:last-child, .table-of-contents ul:last-child {
|
|
15406
|
+
margin-bottom: 0;
|
|
15407
|
+
}
|
|
15408
|
+
.table-of-contents .list-inline li {
|
|
15409
|
+
font-size: 1rem;
|
|
15410
|
+
}
|
|
15411
|
+
|
|
15329
15412
|
.table, .semaineDeRef {
|
|
15330
15413
|
width: 100%;
|
|
15331
15414
|
}
|
|
@@ -17061,20 +17144,17 @@ a.nav-arrow:hover .icon-container {
|
|
|
17061
17144
|
}
|
|
17062
17145
|
.header .nav-header li a:hover,
|
|
17063
17146
|
.header .nav-header li a.open,
|
|
17064
|
-
.header .nav-header li a.active, .header .nav-header li.active a,
|
|
17065
|
-
.header .nav-header li a:focus, .header .nav-header li.current-menu-item a {
|
|
17147
|
+
.header .nav-header li a.active, .header .nav-header li.active a, .header .nav-header li.current-menu-item a {
|
|
17066
17148
|
color: #ff0000;
|
|
17067
17149
|
}
|
|
17068
17150
|
.header .nav-header li a:hover:before,
|
|
17069
17151
|
.header .nav-header li a.open:before,
|
|
17070
|
-
.header .nav-header li a.active:before, .header .nav-header li.active a:before,
|
|
17071
|
-
.header .nav-header li a:focus:before, .header .nav-header li.current-menu-item a:before {
|
|
17152
|
+
.header .nav-header li a.active:before, .header .nav-header li.active a:before, .header .nav-header li.current-menu-item a:before {
|
|
17072
17153
|
content: none;
|
|
17073
17154
|
}
|
|
17074
17155
|
.header .nav-header li a:hover:after,
|
|
17075
17156
|
.header .nav-header li a.open:after,
|
|
17076
|
-
.header .nav-header li a.active:after, .header .nav-header li.active a:after,
|
|
17077
|
-
.header .nav-header li a:focus:after, .header .nav-header li.current-menu-item a:after {
|
|
17157
|
+
.header .nav-header li a.active:after, .header .nav-header li.active a:after, .header .nav-header li.current-menu-item a:after {
|
|
17078
17158
|
opacity: 1;
|
|
17079
17159
|
}
|
|
17080
17160
|
.header .nav-header li:before {
|
|
@@ -17099,16 +17179,30 @@ a.nav-arrow:hover .icon-container {
|
|
|
17099
17179
|
.header .nav-header .dropdown .btn:focus:before {
|
|
17100
17180
|
opacity: 1;
|
|
17101
17181
|
}
|
|
17102
|
-
.header .nav-header .dropdown-item
|
|
17182
|
+
.header .nav-header .dropdown-item > a,
|
|
17183
|
+
.header .nav-header a.dropdown-item {
|
|
17184
|
+
width: 100%;
|
|
17103
17185
|
padding: 0.25rem 1.25rem;
|
|
17104
17186
|
font-weight: 400;
|
|
17105
17187
|
}
|
|
17106
|
-
.header .nav-header .dropdown-item:after
|
|
17188
|
+
.header .nav-header .dropdown-item > a:after,
|
|
17189
|
+
.header .nav-header a.dropdown-item:after {
|
|
17107
17190
|
content: none;
|
|
17108
17191
|
}
|
|
17109
|
-
.header .nav-header .dropdown-item:hover
|
|
17192
|
+
.header .nav-header .dropdown-item > a:hover,
|
|
17193
|
+
.header .nav-header a.dropdown-item:hover {
|
|
17110
17194
|
color: #212121;
|
|
17111
17195
|
}
|
|
17196
|
+
.header .nav-header .dropdown-item > a:focus, .header .nav-header .dropdown-item > a:hover,
|
|
17197
|
+
.header .nav-header a.dropdown-item:focus,
|
|
17198
|
+
.header .nav-header a.dropdown-item:hover {
|
|
17199
|
+
background: #e6e6e6;
|
|
17200
|
+
}
|
|
17201
|
+
.header .nav-header .dropdown-item.current-menu-item > a,
|
|
17202
|
+
.header .nav-header a.dropdown-item.active {
|
|
17203
|
+
background: #707070;
|
|
17204
|
+
color: #fff;
|
|
17205
|
+
}
|
|
17112
17206
|
.header .nav-header .icon {
|
|
17113
17207
|
font-size: 0.9em;
|
|
17114
17208
|
}
|
|
@@ -18319,7 +18413,7 @@ a.cc-link {
|
|
|
18319
18413
|
}
|
|
18320
18414
|
.project-data .available {
|
|
18321
18415
|
font-weight: bold;
|
|
18322
|
-
color: #
|
|
18416
|
+
color: #487915;
|
|
18323
18417
|
}
|
|
18324
18418
|
.project-data .completed {
|
|
18325
18419
|
font-weight: bold;
|