diff options
author | James Taylor <user234683@users.noreply.github.com> | 2019-08-24 18:19:22 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2019-08-24 18:19:22 -0700 |
commit | 9f67a970c602f82a761b90587033d9beaf7c122b (patch) | |
tree | 07a1ead09d1a21d9682b8bca817d4025905219d8 /youtube/templates | |
parent | 3d911e4987ef9768702729e60d51cb872700a716 (diff) | |
download | yt-local-9f67a970c602f82a761b90587033d9beaf7c122b.tar.lz yt-local-9f67a970c602f82a761b90587033d9beaf7c122b.tar.xz yt-local-9f67a970c602f82a761b90587033d9beaf7c122b.zip |
Layout: Make item titles non-clickable in empty space after wrapped text
Diffstat (limited to 'youtube/templates')
-rw-r--r-- | youtube/templates/common_elements.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube/templates/common_elements.html b/youtube/templates/common_elements.html index b9ceafa..33d50b7 100644 --- a/youtube/templates/common_elements.html +++ b/youtube/templates/common_elements.html @@ -26,7 +26,7 @@ {% endif %} </a> - <a class="title" href="{{ info['url'] }}" title="{{ info['title'] }}">{{ info['title'] }}</a> + <div class="title"><a class="title" href="{{ info['url'] }}" title="{{ info['title'] }}">{{ info['title'] }}</a></div> <ul class="stats {{'vertical-stats' if horizontal and not description and include_author else 'horizontal-stats'}}"> {% if info['type'] == 'channel' %} |