diff options
author | James Taylor <user234683@users.noreply.github.com> | 2019-12-20 21:00:10 -0800 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2019-12-20 21:00:10 -0800 |
commit | 66746d0ca8f65ecb8b36ceab0389a6b503d4632b (patch) | |
tree | 5b82e9065024da6fe2bdd93e73b0a105e5de2e31 | |
parent | 4b6efb0e0baa290eaa43a01f672e22c1460ed6ea (diff) | |
download | yt-local-66746d0ca8f65ecb8b36ceab0389a6b503d4632b.tar.lz yt-local-66746d0ca8f65ecb8b36ceab0389a6b503d4632b.tar.xz yt-local-66746d0ca8f65ecb8b36ceab0389a6b503d4632b.zip |
Watch: Add padding in description box and urlize links
-rw-r--r-- | youtube/templates/watch.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube/templates/watch.html b/youtube/templates/watch.html index 9cb26ae..4e69322 100644 --- a/youtube/templates/watch.html +++ b/youtube/templates/watch.html @@ -130,6 +130,7 @@ word-wrap: break-word; grid-column: 1 / span 2; grid-row: 7; + padding: 5px; } .music-list{ @@ -294,7 +295,7 @@ <input class="checkbox" name="video_info_list" value="{{ video_info }}" form="playlist-edit" type="checkbox"> - <span class="description">{{ common_elements.text_runs(description) }}</span> + <span class="description">{{ common_elements.text_runs(description)|urlize }}</span> <div class="music-list"> {% if music_list.__len__() != 0 %} <hr> |