From abfbb517d0c3319e2b07ee0d48e96ef3f102d401 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20M=C3=A9nager?= <herve.menager@pasteur.fr> Date: Wed, 18 Nov 2020 22:35:04 +0100 Subject: [PATCH] revise layout of compound identifiers to avoid overflow --- ippisite/ippidb/templates/compound_card.html | 2 +- ippisite/ippidb/templates/compound_l_item.html | 8 ++++---- ippisite/ippidb/templates/compound_list.html | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ippisite/ippidb/templates/compound_card.html b/ippisite/ippidb/templates/compound_card.html index 132d8a80..ba4c780e 100644 --- a/ippisite/ippidb/templates/compound_card.html +++ b/ippisite/ippidb/templates/compound_card.html @@ -55,7 +55,7 @@ <div class="row" style="display: inline-block;height:auto; margin-right: 15px; margin-left: 15px;"> <div class="tab-content" id="tabContent"> <div class="tab-pane fade show active" id="compound" role="tabpanel" aria-labelledby="compound-tab"> - <div class="card"> + <div class="card inner-wrap"> <div class="card-body"> {% include "compound_l_item.html" with compound=compound show_detail=True %} </div> diff --git a/ippisite/ippidb/templates/compound_l_item.html b/ippisite/ippidb/templates/compound_l_item.html index f1341792..4c42e996 100644 --- a/ippisite/ippidb/templates/compound_l_item.html +++ b/ippisite/ippidb/templates/compound_l_item.html @@ -24,16 +24,16 @@ <li class="list-group-item">Common name: {{ compound.common_name }}</li> {% endif %} {% if compound.canonical_smile %} - <li class="list-group-item">Canonical SMILES: {{ compound.canonical_smile }}</li> + <li class="list-group-item">Canonical SMILES: <pre style="overflow: scroll;">{{ compound.canonical_smile }}</pre></li> {% endif %} {% if compound.iupac_name %} - <li class="list-group-item">IUPAC name: {{ compound.iupac_name }}</li> + <li class="list-group-item">IUPAC name: <pre style="overflow: scroll;">{{ compound.iupac_name }}</pre></li> {% endif %} {% if compound.inchi %} - <li class="list-group-item">InChi: {{ compound.inchi }}</li> + <li class="list-group-item">InChi: <pre style="overflow: scroll;">{{ compound.inchi }}</pre></li> {% endif %} {% if compound.inchikey %} - <li class="list-group-item">InChiKey: {{ compound.inchikey }}</li> + <li class="list-group-item">InChiKey: <pre style="overflow: scroll;">{{ compound.inchikey }}</pre></li> {% endif %} </ul> {%if compound.pubchem_id or compound.chembl_id or compound.chemspider_id or compound.ligand_id %} diff --git a/ippisite/ippidb/templates/compound_list.html b/ippisite/ippidb/templates/compound_list.html index 009d32b7..c603353d 100644 --- a/ippisite/ippidb/templates/compound_list.html +++ b/ippisite/ippidb/templates/compound_list.html @@ -29,7 +29,7 @@ </div> <div class="inner-wrap container-fluid "> - <div class="row flex-xl-nowrap"> + <div class="row"> <main class="col-12" role="main"> <h1 class="page-title">Query compounds</h1> -- GitLab