-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into do_gwascat_harmonisation
- Loading branch information
Showing
76 changed files
with
691 additions
and
467 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
module.exports = {extends: ['@commitlint/config-conventional']}; | ||
module.exports = { extends: ["@commitlint/config-conventional"] }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
$('.contributors img[data-src]').each(function () { | ||
src = $(this).attr("data-src"); | ||
$(this).attr('src', src); | ||
$(".contributors img[data-src]").each(function () { | ||
src = $(this).attr("data-src"); | ||
$(this).attr("src", src); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,50 @@ | ||
<hr /> | ||
<div class="md-source-file"> | ||
<small> | ||
<ul class="metadata page-metadata" data-bi-name="page info" lang="en-us" dir="ltr"> | ||
<!-- mkdocs-git-revision-date-plugin --> | ||
{% if page.meta.git_creation_date_localized %} | ||
<li> | ||
<span class="icon twemoji"> | ||
{% include ".icons/material/clock-plus-outline.svg" %} | ||
</span> | ||
<span class="label"> | ||
{{ page.meta.git_creation_date_localized }} | ||
</span> | ||
</li> | ||
{% endif %} | ||
<small> | ||
<ul | ||
class="metadata page-metadata" | ||
data-bi-name="page info" | ||
lang="en-us" | ||
dir="ltr" | ||
> | ||
<!-- mkdocs-git-revision-date-plugin --> | ||
{% if page.meta.git_creation_date_localized %} | ||
<li> | ||
<span class="icon twemoji"> | ||
{% include ".icons/material/clock-plus-outline.svg" %} | ||
</span> | ||
<span class="label"> {{ page.meta.git_creation_date_localized }} </span> | ||
</li> | ||
{% endif %} {% if page.meta.git_revision_date_localized %} | ||
<li> | ||
<span class="icon twemoji"> | ||
{% include ".icons/material/clock-edit-outline.svg" %} | ||
</span> | ||
<span class="label"> {{ page.meta.git_revision_date_localized }} </span> | ||
</li> | ||
{% endif %} | ||
|
||
{% if page.meta.git_revision_date_localized %} | ||
<li> | ||
<span class="icon twemoji"> | ||
{% include ".icons/material/clock-edit-outline.svg" %} | ||
</span> | ||
<span class="label"> | ||
{{ page.meta.git_revision_date_localized }} | ||
</span> | ||
</li> | ||
{% endif %} | ||
|
||
<li> | ||
<span class="icon twemoji"> | ||
{% include ".icons/material/github.svg" %} | ||
</span> | ||
<span class="label"> | ||
Contributors | ||
</span> | ||
</li> | ||
<li class="contributors-holder"> | ||
<ul class="contributors" data-bi-name="contributors"> | ||
{%- for user in committers -%} | ||
<li><a href="{{ user.url }}" title="{{ user.name }}" data-bi-name="contributorprofile" | ||
target="_blank"><img src="{{ user.avatar }}" alt="{{ user.name }}"></a></li> | ||
{%- endfor -%} | ||
</ul> | ||
</li> | ||
<li> | ||
<span class="icon twemoji"> | ||
{% include ".icons/material/github.svg" %} | ||
</span> | ||
<span class="label"> Contributors </span> | ||
</li> | ||
<li class="contributors-holder"> | ||
<ul class="contributors" data-bi-name="contributors"> | ||
{%- for user in committers -%} | ||
<li> | ||
<a | ||
href="{{ user.url }}" | ||
title="{{ user.name }}" | ||
data-bi-name="contributorprofile" | ||
target="_blank" | ||
><img src="{{ user.avatar }}" alt="{{ user.name }}" | ||
/></a> | ||
</li> | ||
{%- endfor -%} | ||
</ul> | ||
</small> | ||
</li> | ||
</ul> | ||
</small> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,79 +1,75 @@ | ||
.metadata { | ||
list-style: none; | ||
padding: 0; | ||
margin: 0; | ||
margin-bottom: 15px; | ||
color: #999; | ||
list-style: none; | ||
padding: 0; | ||
margin: 0; | ||
margin-bottom: 15px; | ||
color: #999; | ||
} | ||
|
||
.metadata.page-metadata .contributors-text { | ||
margin-right: 5px; | ||
display: inline-block; | ||
margin-right: 5px; | ||
display: inline-block; | ||
} | ||
|
||
.metadata.page-metadata { | ||
display: flex !important; | ||
flex-direction: row; | ||
align-items: center; | ||
font-size: 1.2em; | ||
display: flex !important; | ||
flex-direction: row; | ||
align-items: center; | ||
font-size: 1.2em; | ||
} | ||
|
||
|
||
.metadata.page-metadata li { | ||
list-style: none; | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: center; | ||
align-items: center; | ||
margin-bottom: 0 !important; | ||
list-style: none; | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: center; | ||
align-items: center; | ||
margin-bottom: 0 !important; | ||
} | ||
|
||
|
||
.metadata.page-metadata li .icon { | ||
width: 1.1rem; | ||
height: 1.1rem; | ||
margin-right: 2px; | ||
width: 1.1rem; | ||
height: 1.1rem; | ||
margin-right: 2px; | ||
} | ||
|
||
|
||
.metadata.page-metadata li .icon svg { | ||
fill: #999; | ||
fill: #999; | ||
} | ||
|
||
|
||
.page-metadata .contributors-holder { | ||
margin: 0 !important; | ||
margin-left: 1em; | ||
margin: 0 !important; | ||
margin-left: 1em; | ||
} | ||
|
||
.page-metadata .contributors { | ||
margin-right: 5px; | ||
display: inline-block; | ||
list-style: none; | ||
display: flex; | ||
flex-direction: row; | ||
margin-right: 5px; | ||
display: inline-block; | ||
list-style: none; | ||
display: flex; | ||
flex-direction: row; | ||
} | ||
|
||
.page-metadata .contributors li { | ||
display: inline-flex; | ||
margin: 0 !important; | ||
padding: 0 !important; | ||
display: inline-flex; | ||
margin: 0 !important; | ||
padding: 0 !important; | ||
} | ||
|
||
.page-metadata .contributors li img { | ||
border-radius: 50%; | ||
filter: grayscale(100%); | ||
-webkit-filter: grayscale(100%); | ||
opacity: 0.8; | ||
vertical-align: middle; | ||
width: 1.6rem; | ||
transition: all 0.2s ease-in-out; | ||
border-radius: 50%; | ||
filter: grayscale(100%); | ||
-webkit-filter: grayscale(100%); | ||
opacity: 0.8; | ||
vertical-align: middle; | ||
width: 1.6rem; | ||
transition: all 0.2s ease-in-out; | ||
} | ||
|
||
.page-metadata .contributors li img:hover { | ||
opacity: 1; | ||
filter: grayscale(0%); | ||
-webkit-filter: grayscale(0%); | ||
vertical-align: middle; | ||
transform: scale(1.2); | ||
opacity: 1; | ||
filter: grayscale(0%); | ||
-webkit-filter: grayscale(0%); | ||
vertical-align: middle; | ||
transform: scale(1.2); | ||
} |
Oops, something went wrong.