epfl-elements 5.3.0 → 5.5.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.
Files changed (42) hide show
  1. package/dist/components/atoms/research-icon/research-icon-discrete-link.twig +3 -0
  2. package/dist/components/atoms/research-icon/research-icon-group.twig +21 -0
  3. package/dist/components/atoms/research-icon/research-icon-link-group.twig +21 -0
  4. package/dist/components/atoms/research-icon/research-icon-link.twig +9 -0
  5. package/dist/components/atoms/research-icon/research-icon-negative-link.twig +3 -0
  6. package/dist/components/atoms/research-icon/research-icon-negative.twig +3 -0
  7. package/dist/components/atoms/research-icon/research-icon-round-discrete-link.twig +4 -0
  8. package/dist/components/atoms/research-icon/research-icon-round-link.twig +3 -0
  9. package/dist/components/atoms/research-icon/research-icon-round.twig +3 -0
  10. package/dist/components/atoms/research-icon/research-icon-single-link-with-details.twig +11 -0
  11. package/dist/components/atoms/research-icon/research-icon-single-link.twig +10 -0
  12. package/dist/components/atoms/research-icon/research-icon-single.twig +9 -0
  13. package/dist/components/atoms/research-icon/research-icon.twig +9 -0
  14. package/dist/components/atoms/research-icon/research-icon.yml +29 -0
  15. package/dist/components/atoms/select/select-multiple.twig +6 -1
  16. package/dist/components/atoms/social-icon/social-icon-group.twig +3 -0
  17. package/dist/components/atoms/social-icon/social-icon-link-group.twig +5 -0
  18. package/dist/components/atoms/social-icon/social-icon-link.twig +2 -2
  19. package/dist/components/atoms/social-icon/social-icon-single-link-with-details.twig +2 -2
  20. package/dist/components/atoms/social-icon/social-icon-single-link.twig +2 -2
  21. package/dist/components/atoms/social-icon/social-icon-single.twig +2 -2
  22. package/dist/components/atoms/social-icon/social-icon.twig +2 -2
  23. package/dist/components/atoms/social-icon/social-icon.yml +1 -0
  24. package/dist/components/molecules/map/map-overlay.twig +7 -0
  25. package/dist/components/molecules/map copy/map-overlay.twig +7 -0
  26. package/dist/components/molecules/map copy/map.twig +5 -0
  27. package/dist/components/molecules/map copy/map.yml +20 -0
  28. package/dist/components/pages/lab-homepage/lab-homepage.twig +1 -1
  29. package/dist/css/elements.css +165 -4
  30. package/dist/css/elements.min.css +1 -1
  31. package/dist/css/elements.min.css.map +1 -1
  32. package/dist/css/reader.css +1 -0
  33. package/dist/css/reader.min.css +1 -1
  34. package/dist/css/reader.min.css.map +1 -1
  35. package/dist/icons/icons.svg +1 -1
  36. package/dist/js/reader.js +217 -78
  37. package/dist/js/reader.min.js +2 -2
  38. package/dist/js/reader.min.js.map +1 -1
  39. package/dist/js/vendors.js +1142 -4264
  40. package/dist/js/vendors.min.js +1 -1
  41. package/dist/package.json +3 -3
  42. package/package.json +3 -3
@@ -0,0 +1,3 @@
1
+ {% include "@atoms/research-icon/research-icon-link.twig" with {
2
+ discrete_ri: true
3
+ } %}
@@ -0,0 +1,21 @@
1
+ {% set round_ri = round_ri ? round_ri : false %}
2
+ {% set discrete_ri = discrete_ri ? discrete_ri : false %}
3
+ {% set negative_ri = negative_ri ? negative_ri : false %}
4
+
5
+ <ul class="research-icon-list list-inline">
6
+ <li>
7
+ {% include '@atoms/research-icon/research-icon-single.twig' with { pretty_name_ri: 'OrcID', icon_ri: 'icon-orcid', round_ri: round_ri, discrete_ri: discrete_ri, negative_ri: negative_ri, url: 'https://orcid.org/' } %}
8
+ </li>
9
+ <li>
10
+ {% include '@atoms/research-icon/research-icon-single.twig' with { pretty_name_ri: 'Google Scholar', icon_ri: 'icon-googlescholar', round_ri: round_ri, discrete_ri: discrete_ri, negative_ri: negative_ri, url: 'https://scholar.google.com/' } %}
11
+ </li>
12
+ <li>
13
+ {% include '@atoms/research-icon/research-icon-single.twig' with { pretty_name_ri: 'Scopus', icon_ri: 'icon-scopus', round_ri: round_ri, discrete_ri: discrete_ri, negative_ri: negative_ri, url: 'https://www.scopus.com/' } %}
14
+ </li>
15
+ <li>
16
+ {% include '@atoms/research-icon/research-icon-single.twig' with { pretty_name_ri: 'Stack Overflow', icon_ri: 'icon-stackoverflow', round_ri: round_ri, discrete_ri: discrete_ri, negative_ri: negative_ri, url: 'https://stackoverflow.com/' } %}
17
+ </li>
18
+ <li>
19
+ {% include '@atoms/research-icon/research-icon-single.twig' with { pretty_name_ri: 'Publons - Web of Science', icon_ri: 'icon-wos', round_ri: round_ri, discrete_ri: discrete_ri, negative_ri: negative_ri, url: 'https://www.webofscience.com/' } %}
20
+ </li>
21
+ </ul>
@@ -0,0 +1,21 @@
1
+ {% set round_ri = round_ri ? round_ri : false %}
2
+ {% set discrete_ri = discrete_ri ? discrete_ri : false %}
3
+ {% set negative_ri = negative_ri ? negative_ri : false %}
4
+
5
+ <ul class="research-icon-list list-inline">
6
+ <li>
7
+ {% include '@atoms/research-icon/research-icon-single-link.twig' with { pretty_name_ri: 'OrcID', icon_ri: 'icon-orcid', round_ri: round_ri, discrete_ri: discrete_ri, negative_ri: negative_ri, url: 'https://orcid.org/' } %}
8
+ </li>
9
+ <li>
10
+ {% include '@atoms/research-icon/research-icon-single-link.twig' with { pretty_name_ri: 'Google Scholar', icon_ri: 'icon-googlescholar', round_ri: round_ri, discrete_ri: discrete_ri, negative_ri: negative_ri, url: 'https://scholar.google.com/' } %}
11
+ </li>
12
+ <li>
13
+ {% include '@atoms/research-icon/research-icon-single-link.twig' with { pretty_name_ri: 'Scopus', icon_ri: 'icon-scopus', round_ri: round_ri, discrete_ri: discrete_ri, negative_ri: negative_ri, url: 'https://www.scopus.com/' } %}
14
+ </li>
15
+ <li>
16
+ {% include '@atoms/research-icon/research-icon-single-link.twig' with { pretty_name_ri: 'Stack Overflow', icon_ri: 'icon-stackoverflow', round_ri: round_ri, discrete_ri: discrete_ri, negative_ri: negative_ri, url: 'https://stackoverflow.com/' } %}
17
+ </li>
18
+ <li>
19
+ {% include '@atoms/research-icon/research-icon-single-link.twig' with { pretty_name_ri: 'Publons - Web of Science', icon_ri: 'icon-wos', round_ri: round_ri, discrete_ri: discrete_ri, negative_ri: negative_ri, url: 'https://www.webofscience.com' } %}
20
+ </li>
21
+ </ul>
@@ -0,0 +1,9 @@
1
+ {% set pretty_name_ri = pretty_name_ri ?: 'Scopus' %}
2
+ {% set icon_ri = icon_ri ?: 'icon-scopus' %}
3
+ {% set round_ri = round_ri ? ' research-icon-round' : '' %}
4
+ {% set discrete_ri = discrete_ri ? ' research-icon-discrete' : '' %}
5
+ {% set negative_ri = negative_ri ? ' research-icon-negative' : '' %}
6
+ <a href="#" class="{{ 'research-icon research-' ~ icon_ri ~ round_ri ~ negative_ri ~ discrete_ri }}">
7
+ {% include '@atoms/icon/icon.twig' with { icon: icon_ri } %}
8
+ <span class="sr-only">{{ pretty_name_ri }}</span>
9
+ </a>
@@ -0,0 +1,3 @@
1
+ {% include "@atoms/research-icon/research-icon-link.twig" with {
2
+ negative_ri: true
3
+ } %}
@@ -0,0 +1,3 @@
1
+ {% include "@atoms/research-icon/research-icon.twig" with {
2
+ negative_ri: true
3
+ } %}
@@ -0,0 +1,4 @@
1
+ {% include "@atoms/research-icon/research-icon-link.twig" with {
2
+ discrete_ri: true,
3
+ round_ri: true
4
+ } %}
@@ -0,0 +1,3 @@
1
+ {% include "@atoms/research-icon/research-icon-link.twig" with {
2
+ round_ri: true
3
+ } %}
@@ -0,0 +1,3 @@
1
+ {% include "@atoms/research-icon/research-icon.twig" with {
2
+ round_ri: true
3
+ } %}
@@ -0,0 +1,11 @@
1
+ {% set pretty_name_ri = pretty_name_ri ?: 'Scopus' %}
2
+ {% set user_id = user_id ?: 'firstname.name' %}
3
+ {% set icon_ri = icon_ri ?: 'icon-scopus' %}
4
+ {% set round_ri = round_ri ? ' research-icon-round' : '' %}
5
+ {% set discrete_ri = discrete_ri ? ' research-icon-discrete' : '' %}
6
+ {% set negative_ri = negative_ri ? ' research-icon-negative' : '' %}
7
+ {% set url = url or '#' %}
8
+ <a href="{{ url }}" class="{{ 'research-icon research-icon-details research-' ~ icon_ri ~ round_ri ~ negative_ri ~ discrete_ri }}" rel="nofollow" title="{{ pretty_name_ri }}">
9
+ {% include '@atoms/icon/icon.twig' with { icon: icon_ri } %}
10
+ <span class="user">{{ user_id }}</span>
11
+ </a>
@@ -0,0 +1,10 @@
1
+ {% set pretty_name_ri = pretty_name_ri ?: 'Scopus' %}
2
+ {% set icon_ri = icon_ri ?: 'icon-scopus' %}
3
+ {% set round_ri = round_ri ? ' research-icon-round' : '' %}
4
+ {% set discrete_ri = discrete_ri ? ' research-icon-discrete' : '' %}
5
+ {% set negative_ri = negative_ri ? ' research-icon-negative' : '' %}
6
+ {% set url = url ?: '#' %}
7
+ <a href="{{ url }}" class="{{ 'research-icon research-' ~ icon_ri ~ round_ri ~ negative_ri ~ discrete_ri }}" target="_blank" rel="nofollow noopener">
8
+ {% include '@atoms/icon/icon.twig' with { icon: icon_ri } %}
9
+ <span class="sr-only">{{ pretty_name_ri }}</span>
10
+ </a>
@@ -0,0 +1,9 @@
1
+ {% set pretty_name_ri = pretty_name_ri ?: 'scopus' %}
2
+ {% set icon_ri = icon_ri ?: 'icon-scopus' %}
3
+ {% set round_ri = round_ri ? ' research-icon-round' : '' %}
4
+ {% set discrete_ri = discrete_ri ? ' research-icon-discrete' : '' %}
5
+ {% set negative_ri = negative_ri ? ' research-icon-negative' : '' %}
6
+ <span class="{{ 'research-icon research-' ~ icon_ri ~ round_ri ~ negative_ri }}">
7
+ {% include '@atoms/icon/icon.twig' with { icon: icon_ri } %}
8
+ <span class="sr-only">{{ pretty_name }}</span>
9
+ </span>
@@ -0,0 +1,9 @@
1
+ {% set pretty_name_ri = pretty_name_ri ?: 'Scopus' %}
2
+ {% set icon_ri = icon_ri ?: 'icon-scopus' %}
3
+ {% set round_ri = round_ri ? ' research-icon-round' : '' %}
4
+ {% set discrete_ri = discrete_ri ? ' research-icon-discrete' : '' %}
5
+ {% set negative_ri = negative_ri ? ' research-icon-negative' : '' %}
6
+ <span class="{{ 'research-icon research-' ~ icon_ri ~ round_ri ~ negative_ri }}">
7
+ {% include '@atoms/icon/icon.twig' with { icon: icon_ri } %}
8
+ <span class="sr-only">{{ pretty_name }}</span>
9
+ </span>
@@ -0,0 +1,29 @@
1
+ title: Research icon
2
+ name: research-icon
3
+ variants:
4
+ - name: link
5
+ title: Link
6
+ - name: group
7
+ title: Group
8
+ - name: link-group
9
+ title: Link Group
10
+ - name: negative
11
+ title: Negative
12
+ - name: round
13
+ title: Round
14
+ - name: discrete-link
15
+ title: Discrete Link
16
+ - name: round-link
17
+ title: Round Link
18
+ - name: round-discrete-link
19
+ title: Round Discrete Link
20
+ - name: negative-link
21
+ title: Negative Link
22
+ notes: |
23
+
24
+ Icons to accomodate research boxes. The available research ids are:
25
+ * `orcid`
26
+ * `googlescholar`
27
+ * `scopus`
28
+ * `stackoverflow`
29
+ * `wos`
@@ -1,6 +1,6 @@
1
1
  <div class="form-group">
2
2
  <label>Pick a restaurant</label>
3
- <select class="select-multiple" multiple="multiple" data-placeholder="Restaurant list">
3
+ <select class="select-multiple" multiple="multiple" data-placeholder="Restaurant list" data-filter="true">
4
4
  <option value="1">Chuck Testa's tavern</option>
5
5
  <option value="2">The Sage Cattabriga-Alosa hideout</option>
6
6
  <option value="3">Nikola Tesla Drive-in</option>
@@ -9,5 +9,10 @@
9
9
  <option value="5">The Hydron Collider</option>
10
10
  <option value="6">There's no place like 127.0.0.1</option>
11
11
  <option value="7">The Shake Shack Space bar</option>
12
+ <optgroup label="EPFL">
13
+ <option value="8">Holy Cow</option>
14
+ <option value="9">Panares Gourmet</option>
15
+ <option value="10">Satellite</option>
16
+ </optgroup>
12
17
  </select>
13
18
  </div>
@@ -18,6 +18,9 @@
18
18
  <li>
19
19
  {% include '@atoms/social-icon/social-icon-single.twig' with { pretty_name: 'Mastodon', icon: 'icon-mastodon', round: round, discrete: discrete, negative: negative } %}
20
20
  </li>
21
+ <li>
22
+ {% include '@atoms/social-icon/social-icon-single.twig' with { pretty_name: 'Matrix', icon: 'icon-matrix', round: round, discrete: discrete, negative: negative } %}
23
+ </li>
21
24
  <li>
22
25
  {% include '@atoms/social-icon/social-icon-single.twig' with { pretty_name: 'TikTok', icon: 'icon-tiktok', round: round, discrete: discrete, negative: negative } %}
23
26
  </li>
@@ -15,6 +15,11 @@
15
15
  <li>
16
16
  {% include '@atoms/social-icon/social-icon-single-link.twig' with { pretty_name: 'Follow us on Mastodon', icon: 'icon-mastodon', round: round, discrete: discrete, negative: negative, url: 'https://social.epfl.ch/@epfl/' } %}
17
17
  </li>
18
+ {% if social_matrix %}
19
+ <li>
20
+ {% include '@atoms/social-icon/social-icon-single-link.twig' with { pretty_name: 'Get in touch on Matrix', icon: 'icon-matrix', round: round, discrete: discrete, negative: negative, url: 'https://matrix.to/#/@username:epfl.ch' } %}
21
+ </li>
22
+ {% endif %}
18
23
  {% if social_tiktok %}
19
24
  <li>
20
25
  {% include '@atoms/social-icon/social-icon-single-link.twig' with { pretty_name: 'Follow us on TikTok', icon: 'icon-tiktok', round: round, discrete: discrete, negative: negative, url: 'https://www.tiktok.com/@epflstudents' } %}
@@ -1,5 +1,5 @@
1
- {% set pretty_name = pretty_name ?: 'X' %}
2
- {% set icon = icon ?: 'icon-x' %}
1
+ {% set pretty_name = pretty_name ?: 'Mastodon' %}
2
+ {% set icon = icon ?: 'icon-mastodon' %}
3
3
  {% set round = round ? ' social-icon-round' : '' %}
4
4
  {% set discrete = discrete ? ' social-icon-discrete' : '' %}
5
5
  {% set negative = negative ? ' social-icon-negative' : '' %}
@@ -1,6 +1,6 @@
1
- {% set pretty_name = pretty_name ?: 'X' %}
1
+ {% set pretty_name = pretty_name ?: 'Mastodon' %}
2
2
  {% set user_id = user_id ?: 'firstname.name' %}
3
- {% set icon = icon ?: 'icon-x' %}
3
+ {% set icon = icon ?: 'icon-mastodon' %}
4
4
  {% set round = round ? ' social-icon-round' : '' %}
5
5
  {% set discrete = discrete ? ' social-icon-discrete' : '' %}
6
6
  {% set negative = negative ? ' social-icon-negative' : '' %}
@@ -1,5 +1,5 @@
1
- {% set pretty_name = pretty_name ?: 'Follow us on X' %}
2
- {% set icon = icon ?: 'icon-x' %}
1
+ {% set pretty_name = pretty_name ?: 'Follow us on Mastodon' %}
2
+ {% set icon = icon ?: 'icon-mastodon' %}
3
3
  {% set round = round ? ' social-icon-round' : '' %}
4
4
  {% set discrete = discrete ? ' social-icon-discrete' : '' %}
5
5
  {% set negative = negative ? ' social-icon-negative' : '' %}
@@ -1,5 +1,5 @@
1
- {% set pretty_name = pretty_name ?: 'X' %}
2
- {% set icon = icon ?: 'icon-x' %}
1
+ {% set pretty_name = pretty_name ?: 'Mastodon' %}
2
+ {% set icon = icon ?: 'icon-mastodon' %}
3
3
  {% set round = round ? ' social-icon-round' : '' %}
4
4
  {% set discrete = discrete ? ' social-icon-discrete' : '' %}
5
5
  {% set negative = negative ? ' social-icon-negative' : '' %}
@@ -1,5 +1,5 @@
1
- {% set pretty_name = pretty_name ?: 'X' %}
2
- {% set icon = icon ?: 'icon-x' %}
1
+ {% set pretty_name = pretty_name ?: 'Mastodon' %}
2
+ {% set icon = icon ?: 'icon-mastodon' %}
3
3
  {% set round = round ? ' social-icon-round' : '' %}
4
4
  {% set discrete = discrete ? ' social-icon-discrete' : '' %}
5
5
  {% set negative = negative ? ' social-icon-negative' : '' %}
@@ -27,6 +27,7 @@ notes: |
27
27
  * `instagram`
28
28
  * `linkedin`
29
29
  * `mastodon`
30
+ * `matrix`
30
31
  * `tiktok`
31
32
  * `whatsapp`
32
33
  * `x`
@@ -0,0 +1,7 @@
1
+ <h4 class="sr-only">Access map</h4>
2
+ <figure class="media-map">
3
+ {% include '@atoms/picture/picture.twig' %}
4
+ <figcaption class="media-map-over">
5
+ <a href="#" class="btn btn-primary btn-block">Itinéraire vers le bureau BP (1er étage)</a>
6
+ </figcaption>
7
+ </figure>
@@ -0,0 +1,7 @@
1
+ <h4 class="sr-only">Access map</h4>
2
+ <figure class="media-map">
3
+ {% include '@atoms/picture/picture.twig' %}
4
+ <figcaption class="media-map-over">
5
+ <a href="#" class="btn btn-primary btn-block">Itinéraire vers le bureau BP (1er étage)</a>
6
+ </figcaption>
7
+ </figure>
@@ -0,0 +1,5 @@
1
+ <iframe
2
+ height="350px"
3
+ width="100%"
4
+ src="https://plan.epfl.ch/iframe/?room==sv 1717&map_zoom=10">
5
+ </iframe>
@@ -0,0 +1,20 @@
1
+ title: Map
2
+ name: map
3
+ notes: |
4
+ The following is an example URL that loads the Plan Embed API:
5
+ `https://plan.epfl.ch/iframe/?room==ROOM&map_zoom=ZOOM`
6
+
7
+ Replace :
8
+ * ROOM (example → SV 1717)
9
+ * ZOOM (example → 10)
10
+
11
+ To use the Plan Embed API on your web page, set the URL you've built as the
12
+ value of an iframe's `src` attribute. Control the map's size with the iframe's
13
+ `height` and `width` attributes.
14
+
15
+ The iframe is only allowed on the epfl.ch domain.
16
+ wrapper: 'tlbx-hidden'
17
+ variants:
18
+ - name: overlay
19
+ title: Overlapping Figure Caption
20
+ wrapper: ' '
@@ -17,7 +17,7 @@
17
17
 
18
18
  {% block fullintro %}
19
19
  <div class="tlbx-single-full-intro d-flex justify-content-between">
20
- <h1 class="h3 my-0">Laboratory page (<a href="#/doc/create%20a%20page.md" target="_blank" onclick="window.open('#/doc/create%20a%20page.md')">doc</a>)</h1>
20
+ <h1 class="h3 my-0">Laboratory page (<a href="#/doc/user%20documentation--create%20a%20page.md" target="_blank" onclick="window.open('#/doc/user%20documentation--create%20a%20page.md')">doc</a>)</h1>
21
21
  <button class="btn btn-sm btn-primary" id="tour-start">Start the tour !</button>
22
22
  </div>
23
23
  {% endblock %}
@@ -10193,6 +10193,10 @@ table {
10193
10193
  background: #ff0000 !important;
10194
10194
  }
10195
10195
 
10196
+ .introjs-bullets ul li:before {
10197
+ content: none;
10198
+ }
10199
+
10196
10200
  .focused, .btn {
10197
10201
  position: relative;
10198
10202
  }
@@ -12301,6 +12305,126 @@ picture .img-fluid {
12301
12305
  background: linear-gradient(#ff0000, #ff0000) 0/var(--sx) 100% no-repeat #c1c1c1;
12302
12306
  }
12303
12307
 
12308
+ .research-icon {
12309
+ display: inline-block;
12310
+ padding: 0.7rem;
12311
+ background: #e6e6e6;
12312
+ border-radius: 0.17rem;
12313
+ line-height: 0;
12314
+ }
12315
+ .research-icon .icon {
12316
+ top: 0;
12317
+ font-size: 24px;
12318
+ color: #fff;
12319
+ }
12320
+
12321
+ .research-icon-details {
12322
+ min-height: 2.6em;
12323
+ -webkit-text-decoration: none !important;
12324
+ text-decoration: none !important;
12325
+ vertical-align: bottom;
12326
+ }
12327
+ .research-icon-details:hover {
12328
+ background: #707070;
12329
+ color: white;
12330
+ }
12331
+ .research-icon-details .user {
12332
+ position: relative;
12333
+ top: 2px;
12334
+ line-height: 24px;
12335
+ vertical-align: bottom;
12336
+ }
12337
+ .research-icon-details .icon + .user {
12338
+ margin-left: 0.25em;
12339
+ top: -1px;
12340
+ line-height: 1em;
12341
+ }
12342
+
12343
+ a.research-icon {
12344
+ margin-bottom: 0.3rem;
12345
+ transition: transform 0.2s ease, background-color 0.2s ease, background-image 0.2s ease;
12346
+ }
12347
+ a.research-icon:hover, a.research-icon:focus {
12348
+ transform: translateY(-0.2rem);
12349
+ box-shadow: 0;
12350
+ }
12351
+
12352
+ .research-icon-orcid {
12353
+ background-color: #000000;
12354
+ }
12355
+
12356
+ .research-icon-googlescholar {
12357
+ background-color: #4287f6;
12358
+ }
12359
+
12360
+ .research-icon-scopus {
12361
+ background-color: #fe8300;
12362
+ }
12363
+
12364
+ .research-icon-stackoverflow {
12365
+ background-color: #f58025;
12366
+ }
12367
+
12368
+ .research-icon-wos {
12369
+ background-color: #5D33BF;
12370
+ }
12371
+
12372
+ .research-icon-round {
12373
+ border-radius: 100% !important;
12374
+ padding: 0.8rem;
12375
+ }
12376
+ .research-icon-round:before {
12377
+ border-radius: 100% !important;
12378
+ }
12379
+
12380
+ .research-icon-negative {
12381
+ padding: 0.5rem;
12382
+ background: transparent;
12383
+ transition: background 0.2s;
12384
+ }
12385
+ .research-icon-negative .icon {
12386
+ font-size: 1.5rem;
12387
+ color: #212121;
12388
+ transition: fill 0.2s;
12389
+ }
12390
+ .research-icon-negative:hover {
12391
+ background: #ff0000 !important;
12392
+ }
12393
+ .research-icon-negative:hover .icon {
12394
+ color: #fff !important;
12395
+ }
12396
+
12397
+ .research-icon-discrete .icon {
12398
+ transition: fill 0.2s ease;
12399
+ }
12400
+ .research-icon-discrete:not(:hover) {
12401
+ background: #e6e6e6;
12402
+ }
12403
+ .research-icon-discrete:not(:hover) .icon {
12404
+ color: #707070;
12405
+ }
12406
+
12407
+ .research-icon-list {
12408
+ display: flex;
12409
+ flex-flow: row wrap;
12410
+ align-items: center;
12411
+ margin: 0;
12412
+ }
12413
+ .research-icon-list li {
12414
+ margin-bottom: 0.25rem;
12415
+ }
12416
+ .research-icon-list li .research-icon {
12417
+ margin: 0;
12418
+ }
12419
+ .research-icon-list li:not(:last-child) {
12420
+ margin-right: 0.25rem;
12421
+ }
12422
+ @media (min-width: 992px) {
12423
+ .research-icon-list li {
12424
+ margin-bottom: 0;
12425
+ }
12426
+ }
12427
+
12304
12428
  .custom-select {
12305
12429
  border-color: #8e8e8e;
12306
12430
  }
@@ -12370,6 +12494,35 @@ picture .img-fluid {
12370
12494
  height: 25px;
12371
12495
  }
12372
12496
 
12497
+ .ms-search {
12498
+ display: inline-block;
12499
+ position: relative;
12500
+ width: 100%;
12501
+ margin: 0;
12502
+ min-height: 30px;
12503
+ padding: 0.5em 1em;
12504
+ white-space: nowrap;
12505
+ z-index: 10000;
12506
+ box-sizing: border-box;
12507
+ }
12508
+ .ms-search input {
12509
+ width: 100%;
12510
+ height: auto !important;
12511
+ margin: 0;
12512
+ min-height: 28px;
12513
+ padding: 0 5px;
12514
+ outline: 0;
12515
+ border: 1px solid #8e8e8e;
12516
+ border-radius: 2px;
12517
+ box-shadow: none;
12518
+ }
12519
+ .ms-search input:focus, .ms-search input.focus, .ms-search input:focus-visible {
12520
+ border-color: #212121 !important;
12521
+ box-shadow: none !important;
12522
+ outline: 2px solid #707070;
12523
+ outline-offset: 2px;
12524
+ }
12525
+
12373
12526
  .ms-drop {
12374
12527
  display: none;
12375
12528
  position: absolute;
@@ -12417,6 +12570,9 @@ picture .img-fluid {
12417
12570
  .ms-drop ul > li.group {
12418
12571
  clear: both;
12419
12572
  }
12573
+ .ms-drop ul > li.group ~ li.option-level-1:not(.hide-radio) > label {
12574
+ padding-left: 3em;
12575
+ }
12420
12576
  .ms-drop ul > li.option-divider {
12421
12577
  padding: 0;
12422
12578
  border-top: 1px solid #c1c1c1;
@@ -12436,13 +12592,17 @@ picture .img-fluid {
12436
12592
  .ms-drop label.optgroup {
12437
12593
  font-weight: 700;
12438
12594
  }
12595
+ .ms-drop label.optgroup input[type=checkbox] {
12596
+ margin-right: 0.6em;
12597
+ }
12439
12598
  .ms-drop input[type=checkbox] {
12440
12599
  vertical-align: middle;
12441
- margin-right: 0.5em;
12600
+ margin-right: 0.3em;
12442
12601
  margin-bottom: 0.25em;
12443
12602
  }
12444
12603
  .ms-drop .ms-no-results {
12445
12604
  display: none;
12605
+ padding: 0 1em;
12446
12606
  }
12447
12607
 
12448
12608
  hr {
@@ -12532,6 +12692,10 @@ a.social-icon:hover, a.social-icon:focus {
12532
12692
  background-color: #6364ff;
12533
12693
  }
12534
12694
 
12695
+ .social-icon-matrix {
12696
+ background-color: #000000;
12697
+ }
12698
+
12535
12699
  .social-icon-bluesky {
12536
12700
  background-color: #1185fe;
12537
12701
  }
@@ -14773,7 +14937,6 @@ ol.flickity-page-dots li:before {
14773
14937
  height: 100%;
14774
14938
  -o-object-fit: cover;
14775
14939
  object-fit: cover;
14776
- font-family: "object-fit: cover;"; /* stylelint-disable-line */
14777
14940
  }
14778
14941
 
14779
14942
  .media-map-over {
@@ -15766,7 +15929,6 @@ ol.flickity-page-dots li:before {
15766
15929
  object-fit: cover;
15767
15930
  -o-object-position: top center;
15768
15931
  object-position: top center;
15769
- font-family: "object-fit: cover;"; /* stylelint-disable-line */
15770
15932
  width: 100%;
15771
15933
  height: 100%;
15772
15934
  max-width: none;
@@ -17120,7 +17282,6 @@ a.nav-arrow:hover .icon-container {
17120
17282
  object-fit: cover;
17121
17283
  -o-object-position: center center;
17122
17284
  object-position: center center;
17123
- font-family: "object-fit: cover;"; /* stylelint-disable-line */
17124
17285
  width: 100%;
17125
17286
  height: 100%;
17126
17287
  }