diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-02-12 13:14:28 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-02-12 13:14:28 -0800 |
commit | 840162016708c369340175a40e7bb79329910a57 (patch) | |
tree | ba34aefefb9a7d8023220c8cc4d55b34ba866e1c /python | |
parent | 96ea5526456e681afa27ca7e5fb68ed137f7aae3 (diff) | |
download | fatcat-840162016708c369340175a40e7bb79329910a57.tar.gz fatcat-840162016708c369340175a40e7bb79329910a57.zip |
word-wrap big DOIs
Diffstat (limited to 'python')
-rw-r--r-- | python/fatcat_web/templates/release_view.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/fatcat_web/templates/release_view.html b/python/fatcat_web/templates/release_view.html index d5c75895..40e01239 100644 --- a/python/fatcat_web/templates/release_view.html +++ b/python/fatcat_web/templates/release_view.html @@ -191,8 +191,8 @@ This release citing other releases. {% endif %} {% if release.doi %} -<div class="ui segment attached"> -<b>DOI </b> <a href="https://doi.org/{{ release.doi }}">{{ release.doi }}</a> +<div class="ui segment attached" style="word-wrap: break-word;"> +<b>DOI </b> <a href="https://doi.org/{{ release.doi }}" title="{{ release.doi }}">{{ release.doi }}</a> </div> {% endif %} {% if release.isbn13 != None %} |