Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hotfix/index-format #186

Merged
merged 2 commits into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 23 additions & 4 deletions big_scape/output/html_template/output/html_content/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1265,23 +1265,42 @@ table {
#logos {
float: left;
padding-left: 0.5em;
margin-top: 5px;
margin: 0px 15px 15px 60px;
}

#logos img {
padding-right: 25px;
padding: 0 25px;
}

#logo-table tr td {
height: 50px;
padding: 5px;
}

/* swap between logo themes */
.logo {
display: inline-block;
max-height: 60px;
}

html[data-theme='dark'] .logo {
display: none;
}

.logo-dark {
display: none;
}

html[data-theme='dark'] .logo-dark {
display: inline-block;
max-height: 60px;
}

#copyright {
font-size: 60%;
float: right;
width: 40%;
margin-right: 1.5em;
width: 14.6%;
margin-top: 5em;
padding: 0.5em;
}

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
27 changes: 10 additions & 17 deletions big_scape/output/html_template/output/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
<div class="top-header" style="padding-top: 0.5em;">
<img class="bigscape-logo" src="./html_content/img/bigscape.png" style="height: 80px;margin-left:0.2em"
alt="BiG-SCAPE">
<span class="bigscape-title"><a href="https://github.com/medema-group/BiG-SCAPE">Biosynthetic Genes
<span class="bigscape-title"><a target="_blank"
href="https://github.com/medema-group/BiG-SCAPE">Biosynthetic Genes
Similarity Clustering and Prospecting Engine</a><br>
<span>Version 2.0.0</span>
</span>
Expand Down Expand Up @@ -288,26 +289,16 @@ <h3>Network</h3>
<tbody>
<tr>
<td>
<img src="./html_content/img/wur-logo.png">
</td>
<td>
<img src="./html_content/img/warwick-logo.png">
</td>
<td>
<img src="./html_content/img/cfb-logo.png">
<img class="logo" src="./html_content/img/WUR_RGB.png">
<img class="logo-dark" src="./html_content/img/WUR_W.png">
</td>
</tr>
</tbody>
</table>
</div>
<div id="copyright">
Found BiG-SCAPE useful? Please consider citing our paper:
<br />
Navarro-Muñoz, J.C., Selem-Mojica, N., Mullowney, M.W. et al. "A computational framework to explore
large-scale
biosynthetic diversity". Nature Chemical Biology (2019).
<br />
<a href="https://dx.doi.org/10.1038/s41589-019-0400-9">doi:0.1038/s41589-019-0400-9</a>.
Found BiG-SCAPE useful? Please <a target="_blank" href="https://github.com/medema-group/BiG-SCAPE/wiki">cite
us</a>.
</div>
</div>
</body>
Expand Down Expand Up @@ -893,7 +884,8 @@ <h3>Network</h3>
plugins: {
title: {
display: true,
text: 'BGC per Genome'
text: 'BGC per Genome',
font: { size: 14, weight: "normal" }
},

legend: {
Expand Down Expand Up @@ -936,7 +928,8 @@ <h3>Network</h3>
plugins: {
title: {
display: true,
text: 'BGC per Class'
text: 'BGC per Class',
font: { size: 14, weight: "normal" }
},
legend: {
display: false,
Expand Down
Loading