elixir-toolkit-theme 4.2.0 → 6.0.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.
- checksums.yaml +4 -4
- data/README.md +10 -5
- data/_includes/affiliation-logo.html +10 -0
- data/_includes/affiliation-tiles-page.html +27 -27
- data/_includes/citation-page.html +19 -17
- data/_includes/contributor-avatar.html +16 -0
- data/_includes/contributor-card.html +33 -0
- data/_includes/contributor-carousel-selection.html +19 -69
- data/_includes/contributor-minitiles-page.html +18 -108
- data/_includes/contributor-tiles-all.html +8 -61
- data/_includes/events.html +1 -1
- data/_includes/footer.html +16 -6
- data/_includes/github-buttons.html +18 -22
- data/_includes/head.html +36 -30
- data/_includes/more-information-tiles.html +5 -5
- data/_includes/news.html +1 -1
- data/_includes/page-metadata-tabs.html +92 -0
- data/_includes/pageids-overview.html +1 -1
- data/_includes/related-pages.html +1 -1
- data/_includes/resource-table-all.html +29 -17
- data/_includes/resource-table-page.html +2 -2
- data/_includes/scroll-top.html +1 -1
- data/_includes/section-navigation-tiles.html +12 -7
- data/_includes/sidebar.html +58 -42
- data/_includes/toc.html +1 -1
- data/_includes/topnav.html +2 -1
- data/_layouts/default.html +3 -3
- data/_layouts/page.html +5 -5
- data/_sass/_bootstrap_variables.scss +2 -1
- data/_sass/_variables.scss +11 -17
- data/assets/css/main.scss +287 -146
- data/assets/img/apple-touch-icon.png +0 -0
- data/assets/img/favicon.svg +24 -0
- data/assets/img/site.webmanifest +19 -17
- data/assets/img/web-app-manifest-192x192.png +0 -0
- data/assets/img/web-app-manifest-512x512.png +0 -0
- data/assets/js/custom.js +0 -0
- data/assets/js/main.js +133 -22
- data/assets/js/toc.js +66 -35
- metadata +12 -8
- data/assets/img/android-chrome-192x192.png +0 -0
- data/assets/img/android-chrome-512x512.png +0 -0
- data/assets/img/safari-pinned-tab.svg +0 -29
- data/assets/js/jquery.navgoco.js +0 -314
data/assets/css/main.scss
CHANGED
|
@@ -8,24 +8,39 @@ permalink: assets/css/main
|
|
|
8
8
|
/*-----Default theme variables-----*/
|
|
9
9
|
|
|
10
10
|
@import "bootstrap/functions";
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
/*-----Initialize User Bootstrap variables-----*/
|
|
14
|
+
|
|
15
|
+
@import "bootstrap_variables";
|
|
16
|
+
|
|
17
|
+
/*-----Initialize Bootstrap variables-----*/
|
|
18
|
+
$primary: #0d6efd !default;
|
|
19
|
+
$light: #f8f9fa !default;
|
|
20
|
+
$input-bg: $light !default;
|
|
21
|
+
$input-group-addon-bg: rgba($primary, 0.08) !default;
|
|
22
|
+
$form-select-bg: $light !default;
|
|
23
|
+
$popover-max-width: 12em !default;
|
|
24
|
+
$input-border-width: 0 !default;
|
|
25
|
+
$alert-border-width: 0 !default;
|
|
26
|
+
$form-select-border-width: 0 !default;
|
|
27
|
+
$card-border-width: 0 !default;
|
|
28
|
+
$enable-caret: false !default;
|
|
29
|
+
$breadcrumb-font-size: 0.85rem !default;
|
|
30
|
+
$breadcrumb-divider: '>' !default;
|
|
31
|
+
$breadcrumb-margin-bottom: 0 !default;
|
|
16
32
|
$h3-font-size: 1rem * 1.6 !default;
|
|
17
33
|
$h2-font-size: 1rem * 2.1 !default;
|
|
18
34
|
$h1-font-size: 1rem * 3.3 !default;
|
|
19
|
-
$navbar-light-toggler-border-color: transparent;
|
|
20
|
-
$navbar-dark-toggler-border-color: transparent;
|
|
21
|
-
$
|
|
35
|
+
$navbar-light-toggler-border-color: transparent !default;
|
|
36
|
+
$navbar-dark-toggler-border-color: transparent !default;
|
|
37
|
+
$link-decoration: none !default;
|
|
38
|
+
$link-color: $primary !default;
|
|
22
39
|
$custom-container-max-widths: (
|
|
23
|
-
xxxl:
|
|
40
|
+
xxxl: 1440px
|
|
24
41
|
);
|
|
25
42
|
|
|
26
|
-
/*-----Initialize Bootstrap variables-----*/
|
|
27
43
|
|
|
28
|
-
@import "bootstrap_variables";
|
|
29
44
|
@import "bootstrap/variables";
|
|
30
45
|
|
|
31
46
|
/*-----Custom maps-----*/
|
|
@@ -64,7 +79,7 @@ $container-max-widths: map-merge($container-max-widths, $custom-container-max-wi
|
|
|
64
79
|
margin-top: $spacer * 1.5;
|
|
65
80
|
}
|
|
66
81
|
|
|
67
|
-
h3
|
|
82
|
+
h3+h4 {
|
|
68
83
|
margin-top: $spacer * 0.25;
|
|
69
84
|
}
|
|
70
85
|
|
|
@@ -98,37 +113,39 @@ body img {
|
|
|
98
113
|
font-family: $font-family-theme !important;
|
|
99
114
|
}
|
|
100
115
|
|
|
116
|
+
// Add external link icon to all urls
|
|
117
|
+
#content a:is([href^="http"], [href^="//"]):not([href^="{{ site.url }}"]):not([href^="mailto:"]):not([href^="tel:"]):not(:has(> span:only-child)):not(:has(> img)):not(.btn):not(.no-ext-icon)::after {
|
|
118
|
+
content: "\f35d";
|
|
119
|
+
font-family: "Font Awesome 6 Free";
|
|
120
|
+
font-weight: 900;
|
|
121
|
+
display: inline-block;
|
|
122
|
+
margin-left: .4em;
|
|
123
|
+
font-size: .60em;
|
|
124
|
+
line-height: 1;
|
|
125
|
+
text-rendering: auto;
|
|
126
|
+
-webkit-font-smoothing: antialiased;
|
|
127
|
+
-moz-osx-font-smoothing: grayscale;
|
|
128
|
+
pointer-events: none;
|
|
129
|
+
vertical-align: middle;
|
|
130
|
+
}
|
|
131
|
+
|
|
101
132
|
/*-----Layout-----*/
|
|
102
133
|
|
|
103
134
|
#main {
|
|
104
135
|
grid-area: main;
|
|
105
136
|
}
|
|
106
137
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
display: grid;
|
|
110
|
-
grid-template-areas:
|
|
111
|
-
"intro"
|
|
112
|
-
"toc"
|
|
113
|
-
"content";
|
|
114
|
-
grid-template-rows: auto auto 1fr;
|
|
115
|
-
}
|
|
138
|
+
#intro {
|
|
139
|
+
grid-area: intro;
|
|
116
140
|
}
|
|
117
|
-
@include media-breakpoint-up(xl) {
|
|
118
|
-
#main {
|
|
119
|
-
grid-template-areas:
|
|
120
|
-
"intro toc"
|
|
121
|
-
"content toc";
|
|
122
|
-
grid-template-rows: auto 1fr;
|
|
123
|
-
}
|
|
124
141
|
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
}
|
|
142
|
+
#sidebar {
|
|
143
|
+
grid-area: sidebar;
|
|
128
144
|
}
|
|
129
145
|
|
|
130
146
|
#toc {
|
|
131
147
|
grid-area: toc;
|
|
148
|
+
|
|
132
149
|
/*-----Page image-----*/
|
|
133
150
|
.page-img-lg {
|
|
134
151
|
max-height: 9em;
|
|
@@ -141,47 +158,62 @@ body img {
|
|
|
141
158
|
}
|
|
142
159
|
}
|
|
143
160
|
|
|
161
|
+
@include media-breakpoint-up(md) {
|
|
162
|
+
#main {
|
|
163
|
+
display: grid;
|
|
164
|
+
grid-template-areas:
|
|
165
|
+
"intro"
|
|
166
|
+
"toc"
|
|
167
|
+
"content";
|
|
168
|
+
grid-template-rows: auto auto 1fr;
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
@include media-breakpoint-up(lg) {
|
|
174
|
+
#layout {
|
|
175
|
+
display: grid;
|
|
176
|
+
grid-template-areas: "sidebar main";
|
|
177
|
+
grid-template-columns: 3fr 9fr;
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
|
|
144
181
|
@include media-breakpoint-up(xl) {
|
|
145
|
-
#
|
|
146
|
-
|
|
182
|
+
#main.add-grid {
|
|
183
|
+
grid-template-areas:
|
|
184
|
+
"intro toc"
|
|
185
|
+
"content toc";
|
|
186
|
+
grid-template-rows: auto 1fr;
|
|
187
|
+
grid-template-columns: 5fr 2fr;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
#main.add-grid #toc {
|
|
191
|
+
top: 0;
|
|
147
192
|
right: 0;
|
|
148
193
|
z-index: 2;
|
|
149
194
|
height: calc(100vh - 7rem);
|
|
150
195
|
overflow-y: auto;
|
|
151
196
|
margin-left: $spacer * 3;
|
|
197
|
+
scrollbar-width: thin;
|
|
198
|
+
scrollbar-color: $primary transparent;
|
|
152
199
|
}
|
|
153
|
-
}
|
|
154
200
|
|
|
155
|
-
#
|
|
156
|
-
|
|
201
|
+
#layout {
|
|
202
|
+
grid-template-columns: 2fr 9fr;
|
|
203
|
+
}
|
|
157
204
|
}
|
|
158
205
|
|
|
159
|
-
#sidebar {
|
|
160
|
-
grid-area: sidebar;
|
|
161
|
-
}
|
|
162
206
|
|
|
163
207
|
#content {
|
|
164
208
|
grid-area: content;
|
|
165
209
|
min-width: 1px;
|
|
166
210
|
position: relative;
|
|
167
|
-
> h2:first-child {
|
|
168
|
-
margin-top: 0;
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
211
|
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
display: grid;
|
|
175
|
-
grid-template-areas: "sidebar main";
|
|
176
|
-
grid-template-columns: 3fr 9fr;
|
|
212
|
+
>h2:first-child {
|
|
213
|
+
margin-top: 0;
|
|
177
214
|
}
|
|
178
215
|
}
|
|
179
216
|
|
|
180
|
-
@include media-breakpoint-up(xl) {
|
|
181
|
-
#layout {
|
|
182
|
-
grid-template-columns: 2fr 9fr;
|
|
183
|
-
}
|
|
184
|
-
}
|
|
185
217
|
|
|
186
218
|
/*-----Blockquote-----*/
|
|
187
219
|
|
|
@@ -228,6 +260,7 @@ pre {
|
|
|
228
260
|
border-radius: $border-radius;
|
|
229
261
|
margin-bottom: $spacer;
|
|
230
262
|
line-height: 1.42857143;
|
|
263
|
+
|
|
231
264
|
code {
|
|
232
265
|
padding: 0;
|
|
233
266
|
background-color: transparent;
|
|
@@ -240,17 +273,21 @@ div.highlight {
|
|
|
240
273
|
border: 1px solid $border-color;
|
|
241
274
|
border-radius: $border-radius;
|
|
242
275
|
margin: $spacer 0;
|
|
276
|
+
|
|
243
277
|
pre {
|
|
244
278
|
margin-bottom: 0;
|
|
245
279
|
padding: $spacer;
|
|
246
280
|
border: 0;
|
|
247
281
|
}
|
|
248
282
|
}
|
|
283
|
+
|
|
249
284
|
/*-----Top navigation-----*/
|
|
250
285
|
|
|
251
286
|
header .navbar {
|
|
252
287
|
background-color: $topnav-bg;
|
|
253
|
-
|
|
288
|
+
#search-label, #search-input {
|
|
289
|
+
background-color: $topnav-searchbar;
|
|
290
|
+
}
|
|
254
291
|
.navbar-brand {
|
|
255
292
|
color: $topnav-title-color;
|
|
256
293
|
|
|
@@ -375,7 +412,7 @@ header .navbar {
|
|
|
375
412
|
vertical-align: top;
|
|
376
413
|
}
|
|
377
414
|
|
|
378
|
-
.search-result-preview
|
|
415
|
+
.search-result-preview+.search-result-preview {
|
|
379
416
|
margin-top: 0.25rem;
|
|
380
417
|
}
|
|
381
418
|
|
|
@@ -394,97 +431,130 @@ header .navbar {
|
|
|
394
431
|
/*-----Sidebar-----*/
|
|
395
432
|
|
|
396
433
|
@include media-breakpoint-up(lg) {
|
|
397
|
-
#sidebar
|
|
434
|
+
#sidebar>nav {
|
|
398
435
|
display: block !important;
|
|
436
|
+
position: sticky;
|
|
437
|
+
top: 0;
|
|
438
|
+
height: calc(100vh - 7rem);
|
|
439
|
+
overflow-y: auto;
|
|
440
|
+
scrollbar-width: thin;
|
|
441
|
+
scrollbar-color: $primary transparent;
|
|
399
442
|
}
|
|
400
443
|
}
|
|
401
444
|
|
|
402
|
-
#sidebar > nav
|
|
403
|
-
|
|
404
|
-
|
|
445
|
+
#sidebar > nav {
|
|
446
|
+
.sidebar-title-wrapper {
|
|
447
|
+
position: sticky;
|
|
448
|
+
top: 0;
|
|
449
|
+
background: $sidebar-title-bg;
|
|
450
|
+
z-index: 1;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
.sidebar-title {
|
|
454
|
+
border: 0;
|
|
455
|
+
padding: 0.5rem;
|
|
456
|
+
font-weight: 700;
|
|
457
|
+
transition: $transition-base;
|
|
458
|
+
border-radius: $border-radius;
|
|
459
|
+
|
|
460
|
+
&:hover:not(.disabled), &.active:not(.disabled) {
|
|
461
|
+
color: $sidebar-link-color-active!important;
|
|
462
|
+
background: $sidebar-link-bg-active;
|
|
463
|
+
}
|
|
464
|
+
}
|
|
405
465
|
}
|
|
406
466
|
|
|
407
467
|
.sidebar-collapse {
|
|
408
|
-
background-color: $
|
|
468
|
+
background-color: $light;
|
|
409
469
|
|
|
410
470
|
i {
|
|
411
471
|
font-size: 1.25rem;
|
|
412
472
|
float: right;
|
|
413
|
-
line-height: 1.25em;
|
|
414
473
|
}
|
|
415
474
|
}
|
|
416
475
|
|
|
417
|
-
.sidebar-collapse:not(.collapsed) {
|
|
418
|
-
color: $sidebar-color-active;
|
|
419
|
-
background-color: $sidebar-bg-active;
|
|
420
|
-
}
|
|
421
476
|
|
|
422
477
|
#sidebar > nav > ul {
|
|
423
|
-
|
|
424
|
-
background-color: $sidebar-bg;
|
|
425
|
-
color: $sidebar-color;
|
|
426
|
-
}
|
|
478
|
+
margin-bottom: 0;
|
|
427
479
|
|
|
428
|
-
li
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
480
|
+
li {
|
|
481
|
+
padding: 0.25rem 0.5rem;
|
|
482
|
+
position: relative;
|
|
483
|
+
|
|
484
|
+
a {
|
|
485
|
+
color: inherit;
|
|
486
|
+
cursor: pointer;
|
|
487
|
+
transition: $transition-base;
|
|
488
|
+
line-height: 1.15;
|
|
489
|
+
padding: 0.20rem 0;
|
|
490
|
+
|
|
491
|
+
&::after {
|
|
492
|
+
transition: $transition-base;
|
|
493
|
+
pointer-events: none;
|
|
494
|
+
background: transparent;
|
|
495
|
+
position: absolute;
|
|
496
|
+
content: "";
|
|
497
|
+
left: 0;
|
|
498
|
+
top: 0;
|
|
499
|
+
right: 0;
|
|
500
|
+
bottom: 0;
|
|
501
|
+
border-radius: $border-radius;
|
|
502
|
+
}
|
|
435
503
|
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
font-weight: 900;
|
|
444
|
-
content: "\f078";
|
|
445
|
-
transition: transform 0.15s ease-in-out;
|
|
446
|
-
}
|
|
447
|
-
}
|
|
504
|
+
&:hover,&.active {
|
|
505
|
+
color: $sidebar-link-color-active;
|
|
506
|
+
|
|
507
|
+
&::after {
|
|
508
|
+
background: $sidebar-link-bg-active;
|
|
509
|
+
}
|
|
510
|
+
}
|
|
448
511
|
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
512
|
+
&.active {
|
|
513
|
+
font-weight: 600;
|
|
514
|
+
color: $sidebar-link-color-active;
|
|
515
|
+
}
|
|
453
516
|
}
|
|
454
517
|
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
518
|
+
.btn {
|
|
519
|
+
transition: $transition-base;
|
|
520
|
+
color: inherit;
|
|
521
|
+
width: 1.85rem;
|
|
522
|
+
height: 1.75rem;
|
|
523
|
+
display: flex;
|
|
524
|
+
justify-content: center;
|
|
525
|
+
align-items: center;
|
|
459
526
|
|
|
460
|
-
|
|
461
|
-
|
|
527
|
+
&:hover {
|
|
528
|
+
color: $sidebar-link-color-active;
|
|
529
|
+
background: $sidebar-link-bg-active;
|
|
530
|
+
}
|
|
462
531
|
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
color: $sidebar-lvl2-color;
|
|
532
|
+
&:not(.collapsed) {
|
|
533
|
+
i {
|
|
534
|
+
transform: rotate(90deg);
|
|
535
|
+
}
|
|
468
536
|
}
|
|
469
537
|
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
background-color: $sidebar-lvl3-bg;
|
|
473
|
-
color: $sidebar-lvl3-color;
|
|
538
|
+
i {
|
|
539
|
+
transition: $transition-base;
|
|
474
540
|
}
|
|
475
541
|
}
|
|
476
542
|
|
|
477
|
-
|
|
478
|
-
border-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
border-width: 0.2em;
|
|
483
|
-
margin-top: -0.25rem;
|
|
543
|
+
ul {
|
|
544
|
+
border-left: 1px solid $border-color;
|
|
545
|
+
margin-left: 0.2rem;
|
|
546
|
+
padding-left: 0.4rem;
|
|
547
|
+
margin-bottom: 0;
|
|
484
548
|
}
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
.sidebar_rdm_sub {
|
|
552
|
+
padding: 0.75rem 0.5rem 0.5rem 0.5rem;
|
|
553
|
+
margin-top: -0.25rem;
|
|
485
554
|
}
|
|
486
555
|
}
|
|
487
556
|
|
|
557
|
+
|
|
488
558
|
/*-----Summary under page title-----*/
|
|
489
559
|
|
|
490
560
|
.summary {
|
|
@@ -501,11 +571,19 @@ header .navbar {
|
|
|
501
571
|
|
|
502
572
|
/*-----TOC-----*/
|
|
503
573
|
|
|
574
|
+
#toc {
|
|
575
|
+
#btn-toc-hide {
|
|
576
|
+
display: none;
|
|
577
|
+
}
|
|
578
|
+
}
|
|
504
579
|
#toc-contents {
|
|
505
580
|
@include media-breakpoint-up(xl) {
|
|
506
581
|
display: block !important;
|
|
507
|
-
}
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
// Indent the lists and reset any other padding
|
|
508
585
|
ul {
|
|
586
|
+
|
|
509
587
|
// highlighting active links
|
|
510
588
|
a {
|
|
511
589
|
color: inherit;
|
|
@@ -513,6 +591,7 @@ header .navbar {
|
|
|
513
591
|
border-left: 0.125rem solid transparent;
|
|
514
592
|
display: block;
|
|
515
593
|
transition: border-left 0.15s ease-in-out;
|
|
594
|
+
|
|
516
595
|
&.active,
|
|
517
596
|
&:hover {
|
|
518
597
|
text-decoration: none !important;
|
|
@@ -545,7 +624,7 @@ header .navbar {
|
|
|
545
624
|
|
|
546
625
|
/*-----General table properties-----*/
|
|
547
626
|
|
|
548
|
-
.table
|
|
627
|
+
.table> :not(:first-child) {
|
|
549
628
|
border-color: inherit;
|
|
550
629
|
}
|
|
551
630
|
|
|
@@ -582,6 +661,16 @@ table {
|
|
|
582
661
|
font-weight: bold;
|
|
583
662
|
}
|
|
584
663
|
|
|
664
|
+
/* Make a button the same height/feel as a .badge */
|
|
665
|
+
.btn-badge {
|
|
666
|
+
/* match .badge metrics */
|
|
667
|
+
--bs-btn-padding-y: .35em;
|
|
668
|
+
--bs-btn-padding-x: .65em;
|
|
669
|
+
--bs-btn-font-size: .75em;
|
|
670
|
+
--bs-btn-line-height: 1;
|
|
671
|
+
--bs-btn-font-weight: 700;
|
|
672
|
+
}
|
|
673
|
+
|
|
585
674
|
/*-----Footer-----*/
|
|
586
675
|
|
|
587
676
|
footer {
|
|
@@ -624,10 +713,12 @@ footer {
|
|
|
624
713
|
fill: $footer-ett;
|
|
625
714
|
transition: fill 0.15s ease-in-out;
|
|
626
715
|
}
|
|
716
|
+
|
|
627
717
|
&:hover {
|
|
628
718
|
.cls-1 {
|
|
629
719
|
fill: #0d6efd;
|
|
630
720
|
}
|
|
721
|
+
|
|
631
722
|
color: #0d6efd !important;
|
|
632
723
|
}
|
|
633
724
|
}
|
|
@@ -639,8 +730,10 @@ footer {
|
|
|
639
730
|
position: fixed;
|
|
640
731
|
height: 50px;
|
|
641
732
|
width: 50px;
|
|
642
|
-
bottom: -50px;
|
|
643
|
-
|
|
733
|
+
bottom: -50px;
|
|
734
|
+
/* Default hidden position */
|
|
735
|
+
right: 1rem;
|
|
736
|
+
/* Adjust as needed */
|
|
644
737
|
opacity: 0;
|
|
645
738
|
overflow: hidden;
|
|
646
739
|
z-index: 1000;
|
|
@@ -650,7 +743,8 @@ footer {
|
|
|
650
743
|
opacity 0.15s ease-out;
|
|
651
744
|
|
|
652
745
|
&.visible {
|
|
653
|
-
bottom: 1rem;
|
|
746
|
+
bottom: 1rem;
|
|
747
|
+
/* Initial visible position */
|
|
654
748
|
opacity: 1;
|
|
655
749
|
}
|
|
656
750
|
}
|
|
@@ -669,6 +763,19 @@ footer {
|
|
|
669
763
|
.contributor-cards {
|
|
670
764
|
.card {
|
|
671
765
|
background-color: $contr-card-bg;
|
|
766
|
+
display: flex;
|
|
767
|
+
flex-direction: column;
|
|
768
|
+
|
|
769
|
+
.card-body {
|
|
770
|
+
flex: 1 1 auto;
|
|
771
|
+
display: flex;
|
|
772
|
+
flex-direction: column;
|
|
773
|
+
justify-content: center;
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
.card-footer {
|
|
777
|
+
flex-shrink: 0;
|
|
778
|
+
}
|
|
672
779
|
}
|
|
673
780
|
|
|
674
781
|
.badge {
|
|
@@ -709,6 +816,7 @@ footer {
|
|
|
709
816
|
line-height: 2ex;
|
|
710
817
|
width: 2.2ex;
|
|
711
818
|
height: 2.2ex;
|
|
819
|
+
|
|
712
820
|
i {
|
|
713
821
|
font-size: 0.625em;
|
|
714
822
|
line-height: 0.1em;
|
|
@@ -739,40 +847,57 @@ footer {
|
|
|
739
847
|
text-align: center;
|
|
740
848
|
}
|
|
741
849
|
|
|
850
|
+
/*---- Page metadata ----*/
|
|
851
|
+
.page-metadata {
|
|
852
|
+
background-color: $page-metadata-bg;
|
|
853
|
+
.affiliation-link {
|
|
854
|
+
background-color: $page-metadata-link-bg;
|
|
855
|
+
}
|
|
856
|
+
.nav-link {
|
|
857
|
+
border: none;
|
|
858
|
+
display: flex;
|
|
859
|
+
align-items: center;
|
|
860
|
+
border-bottom: 2px solid transparent;
|
|
861
|
+
color: rgba($body-color, 0.75);
|
|
862
|
+
&.active,
|
|
863
|
+
&:hover {
|
|
864
|
+
background: none;
|
|
865
|
+
border-bottom-color: $primary;
|
|
866
|
+
color: $body-color;
|
|
867
|
+
}
|
|
868
|
+
&:not(.active):hover {
|
|
869
|
+
border-bottom-color: $body-color;
|
|
870
|
+
}
|
|
871
|
+
}
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
|
|
742
875
|
/*--------Page contributors---------*/
|
|
743
876
|
.page-contributors {
|
|
744
|
-
background-color: $contr-bg;
|
|
745
877
|
font-size: 0;
|
|
746
878
|
|
|
747
879
|
.contributor-cards .card {
|
|
748
880
|
background-color: $contr-popover-bg;
|
|
749
881
|
}
|
|
882
|
+
|
|
750
883
|
.dropdown-menu {
|
|
751
884
|
width: 11em;
|
|
752
885
|
}
|
|
753
886
|
|
|
754
887
|
/* Gets rid of extra white space */
|
|
755
888
|
.contributor-link {
|
|
756
|
-
background-color: $
|
|
889
|
+
background-color: $page-metadata-link-bg;
|
|
890
|
+
padding: 0.25rem 0.5rem !important;
|
|
891
|
+
font-size: 0.85rem;
|
|
892
|
+
gap: 0.35rem !important;
|
|
893
|
+
|
|
757
894
|
&::after {
|
|
758
895
|
display: none;
|
|
759
896
|
}
|
|
760
897
|
|
|
761
898
|
.contributor-img-sm {
|
|
762
|
-
height:
|
|
763
|
-
width:
|
|
764
|
-
}
|
|
765
|
-
|
|
766
|
-
.coordinator-crown {
|
|
767
|
-
font-size: 0.6em;
|
|
768
|
-
width: 1.8em;
|
|
769
|
-
height: 1.8em;
|
|
770
|
-
line-height: 1.8;
|
|
771
|
-
background-color: $contr-crown-bg;
|
|
772
|
-
|
|
773
|
-
.fa-solid {
|
|
774
|
-
color: $contr-crown-color;
|
|
775
|
-
}
|
|
899
|
+
height: 22px;
|
|
900
|
+
width: 22px;
|
|
776
901
|
}
|
|
777
902
|
|
|
778
903
|
.contr-placeholder {
|
|
@@ -781,6 +906,7 @@ footer {
|
|
|
781
906
|
}
|
|
782
907
|
}
|
|
783
908
|
|
|
909
|
+
|
|
784
910
|
/*-----Cookie consent banner-----*/
|
|
785
911
|
|
|
786
912
|
.cookiealert {
|
|
@@ -818,21 +944,23 @@ footer {
|
|
|
818
944
|
.tool {
|
|
819
945
|
cursor: pointer;
|
|
820
946
|
color: $link-color;
|
|
821
|
-
background-color: rgba($link-color, 0.
|
|
947
|
+
background-color: rgba($link-color, 0.08);
|
|
822
948
|
border-radius: $border-radius;
|
|
823
949
|
padding: 0.1rem 0.25rem;
|
|
824
950
|
|
|
825
951
|
&:hover,
|
|
826
952
|
&:active {
|
|
827
953
|
text-decoration: none !important;
|
|
828
|
-
color: $
|
|
954
|
+
color: $link-hover-color;
|
|
829
955
|
}
|
|
830
956
|
}
|
|
957
|
+
|
|
831
958
|
@include media-breakpoint-up(sm) {
|
|
832
959
|
.tool {
|
|
833
960
|
white-space: nowrap;
|
|
834
961
|
}
|
|
835
962
|
}
|
|
963
|
+
|
|
836
964
|
.popover-tool {
|
|
837
965
|
max-width: 20rem;
|
|
838
966
|
|
|
@@ -863,15 +991,15 @@ footer {
|
|
|
863
991
|
}
|
|
864
992
|
|
|
865
993
|
.affiliation-img {
|
|
866
|
-
height:
|
|
994
|
+
height: 45px;
|
|
867
995
|
}
|
|
868
996
|
|
|
869
997
|
.affiliation-flag {
|
|
870
|
-
width:
|
|
998
|
+
width: 50px;
|
|
871
999
|
}
|
|
872
1000
|
|
|
873
1001
|
.affiliation-flag .ratio {
|
|
874
|
-
width:
|
|
1002
|
+
width: 35px;
|
|
875
1003
|
}
|
|
876
1004
|
|
|
877
1005
|
/*-----News and events-----*/
|
|
@@ -882,8 +1010,8 @@ li.past_event,
|
|
|
882
1010
|
display: none;
|
|
883
1011
|
}
|
|
884
1012
|
|
|
885
|
-
.events
|
|
886
|
-
.news
|
|
1013
|
+
.events>ul>li,
|
|
1014
|
+
.news>ul>li {
|
|
887
1015
|
border-left: $news-border-color 5px solid;
|
|
888
1016
|
border-radius: $border-radius;
|
|
889
1017
|
padding: 0px 11px;
|
|
@@ -903,7 +1031,7 @@ li.past_event,
|
|
|
903
1031
|
display: inline-block;
|
|
904
1032
|
}
|
|
905
1033
|
|
|
906
|
-
.full-description
|
|
1034
|
+
.full-description>*:last-child {
|
|
907
1035
|
margin-bottom: 0;
|
|
908
1036
|
|
|
909
1037
|
li {
|
|
@@ -919,25 +1047,29 @@ a.info-collapse {
|
|
|
919
1047
|
transition: transform 0.2s ease-in-out;
|
|
920
1048
|
margin-right: $spacer;
|
|
921
1049
|
}
|
|
1050
|
+
|
|
922
1051
|
h3 {
|
|
923
1052
|
transition: color 0.2s ease-in-out;
|
|
924
1053
|
}
|
|
1054
|
+
|
|
925
1055
|
&[aria-expanded="true"] {
|
|
926
1056
|
i {
|
|
927
|
-
transform: rotate(
|
|
1057
|
+
transform: rotate(90deg);
|
|
928
1058
|
}
|
|
929
1059
|
}
|
|
1060
|
+
|
|
930
1061
|
&:hover {
|
|
1062
|
+
|
|
931
1063
|
i,
|
|
932
1064
|
h3 {
|
|
933
|
-
color:
|
|
1065
|
+
color: shift-color($link-color, $link-shade-percentage)!important;
|
|
934
1066
|
}
|
|
935
1067
|
}
|
|
936
1068
|
}
|
|
937
1069
|
|
|
938
1070
|
// Add a bottom border to the last accordion.
|
|
939
1071
|
a.info-collapse[aria-expanded="false"]:last-of-type,
|
|
940
|
-
a.info-collapse[aria-expanded="true"]:last-of-type
|
|
1072
|
+
a.info-collapse[aria-expanded="true"]:last-of-type+.show {
|
|
941
1073
|
border-bottom: 1px solid $border-color;
|
|
942
1074
|
}
|
|
943
1075
|
|
|
@@ -957,13 +1089,16 @@ a.info-collapse[aria-expanded="true"]:last-of-type + .show {
|
|
|
957
1089
|
a.btn {
|
|
958
1090
|
background-color: $info-card-bg;
|
|
959
1091
|
color: $info-card-color;
|
|
1092
|
+
|
|
960
1093
|
i {
|
|
961
1094
|
transition: $btn-transition;
|
|
962
1095
|
color: $info-card-color !important;
|
|
963
1096
|
}
|
|
1097
|
+
|
|
964
1098
|
&:hover {
|
|
965
1099
|
background-color: $info-card-bg-hover;
|
|
966
1100
|
color: $info-card-color-hover !important;
|
|
1101
|
+
|
|
967
1102
|
i {
|
|
968
1103
|
color: $info-card-color-hover !important;
|
|
969
1104
|
}
|
|
@@ -986,14 +1121,17 @@ a.info-collapse[aria-expanded="true"]:last-of-type + .show {
|
|
|
986
1121
|
|
|
987
1122
|
/*-----Section navigation tiles-----*/
|
|
988
1123
|
.navigation-tiles {
|
|
1124
|
+
|
|
989
1125
|
.card,
|
|
990
1126
|
.btn {
|
|
991
1127
|
background-color: $nav-card-bg;
|
|
992
1128
|
color: $nav-card-color;
|
|
993
1129
|
transition: $btn-transition;
|
|
1130
|
+
|
|
994
1131
|
&:hover {
|
|
995
1132
|
background-color: $nav-card-bg-hover;
|
|
996
1133
|
color: $nav-card-color-hover;
|
|
1134
|
+
|
|
997
1135
|
a.section-title {
|
|
998
1136
|
text-decoration: none;
|
|
999
1137
|
transition: $btn-transition;
|
|
@@ -1002,6 +1140,7 @@ a.info-collapse[aria-expanded="true"]:last-of-type + .show {
|
|
|
1002
1140
|
}
|
|
1003
1141
|
|
|
1004
1142
|
a {
|
|
1143
|
+
|
|
1005
1144
|
&:not(.stretched-link),
|
|
1006
1145
|
button:not(.stretched-link) {
|
|
1007
1146
|
z-index: 2;
|
|
@@ -1013,9 +1152,11 @@ a.info-collapse[aria-expanded="true"]:last-of-type + .show {
|
|
|
1013
1152
|
font-size: 1.2rem;
|
|
1014
1153
|
}
|
|
1015
1154
|
}
|
|
1155
|
+
|
|
1016
1156
|
.type-icon {
|
|
1017
1157
|
height: 1.2rem;
|
|
1018
1158
|
}
|
|
1159
|
+
|
|
1019
1160
|
.page-img-sm {
|
|
1020
1161
|
max-height: 3.2em;
|
|
1021
1162
|
}
|