From c8bbc3f2d687838af585b0708b50e5009afaec01 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 12 Dec 2019 21:31:55 +0000 Subject: [PATCH] Hashtag cloud style --- epicyon-follow.css | 8 ++++---- epicyon-profile.css | 8 -------- webinterface.py | 4 ++-- 3 files changed, 6 insertions(+), 14 deletions(-) diff --git a/epicyon-follow.css b/epicyon-follow.css index ef1493ee..11d23869 100644 --- a/epicyon-follow.css +++ b/epicyon-follow.css @@ -125,8 +125,8 @@ input[type=text] { @media screen and (min-width: 400px) { .hashtagcloud { - font-size: var(--font-size4); - word-spacing: 30px; + font-size: 30px; + padding: 30px; } .followText { font-size: 24px; @@ -157,8 +157,8 @@ input[type=text] { @media screen and (max-width: 1000px) { .hashtagcloud { - font-size: var(--font-size3); - word-spacing: 30px; + font-size: 40px; + padding: 40px; } .followText { font-size: 40px; diff --git a/epicyon-profile.css b/epicyon-profile.css index a484e80c..012991b8 100644 --- a/epicyon-profile.css +++ b/epicyon-profile.css @@ -585,10 +585,6 @@ div.gallery img { body, html { font-size: var(--font-size4); } - .hashtagcloud { - font-size: var(--font-size4); - word-spacing: 30px; - } .galleryContainer { display: grid; grid-template-columns: 50% 50%; @@ -908,10 +904,6 @@ div.gallery img { body, html { font-size: var(--font-size3); } - .hashtagcloud { - font-size: var(--font-size3); - word-spacing: 30px; - } div.gallerytext { color: var(--gallery-text-color); font-size: var(--gallery-font-size-mobile); diff --git a/webinterface.py b/webinterface.py index 29d8de42..47eb03b9 100644 --- a/webinterface.py +++ b/webinterface.py @@ -3778,7 +3778,7 @@ def htmlHashTagCloud(baseDir: str,path: str) -> str: tagCloudHtml='
\n' tagCloudStr='' for tagName in tagCloud: - tagCloudStr+=''+tagName+' ' + tagCloudStr+=''+tagName+' ' tagCloudHtml+=tagCloudStr.strip()+'\n
\n' return tagCloudHtml @@ -3810,8 +3810,8 @@ def htmlSearch(translate: {}, \ followStr+=' ' followStr+=' ' followStr+=' ' - followStr+='

'+htmlHashTagCloud(baseDir,path)+'

' followStr+=' ' + followStr+='

'+htmlHashTagCloud(baseDir,path)+'

' followStr+='' followStr+=htmlFooter() return followStr