mirror of https://gitlab.com/bashrc2/epicyon
Liker screen names in similar style to hashtag categories
parent
18e1ad54d7
commit
e1200b9af3
|
@ -1,6 +1,11 @@
|
||||||
@charset "UTF-8";
|
@charset "UTF-8";
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
|
--liker-names-margin: 2%;
|
||||||
|
--liker-names-size1: 30px;
|
||||||
|
--liker-names-size2: 40px;
|
||||||
|
--liker-names-vertical-spacing1: 50px;
|
||||||
|
--liker-names-vertical-spacing2: 100px;
|
||||||
--pwa-theme-color: apple-mobile-web-app-status-bar-style;
|
--pwa-theme-color: apple-mobile-web-app-status-bar-style;
|
||||||
--pwa-theme-background-color: black-translucent;
|
--pwa-theme-background-color: black-translucent;
|
||||||
--avatar-rounding: 10%;
|
--avatar-rounding: 10%;
|
||||||
|
@ -1078,6 +1083,12 @@ div.container {
|
||||||
font-size: var(--font-size);
|
font-size: var(--font-size);
|
||||||
color: var(--title-color);
|
color: var(--title-color);
|
||||||
}
|
}
|
||||||
|
.likerNames {
|
||||||
|
font-size: var(--liker-names-size1);
|
||||||
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
|
margin: var(--liker-names-margin);
|
||||||
|
line-height: var(--liker-names-vertical-spacing1);
|
||||||
|
}
|
||||||
.profileHeader img.vcard {
|
.profileHeader img.vcard {
|
||||||
width: var(--vcard-icon-size);
|
width: var(--vcard-icon-size);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -1845,6 +1856,12 @@ div.container {
|
||||||
blockquote {
|
blockquote {
|
||||||
font-size: var(--quote-font-size-mobile);
|
font-size: var(--quote-font-size-mobile);
|
||||||
}
|
}
|
||||||
|
.likerNames {
|
||||||
|
font-size: var(--liker-names-size2);
|
||||||
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
|
margin: var(--liker-names-margin);
|
||||||
|
line-height: var(--liker-names-vertical-spacing2);
|
||||||
|
}
|
||||||
.profileHeader img.vcard {
|
.profileHeader img.vcard {
|
||||||
width: var(--vcard-icon-size-mobile);
|
width: var(--vcard-icon-size-mobile);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2584,6 +2601,12 @@ div.container {
|
||||||
blockquote {
|
blockquote {
|
||||||
font-size: var(--quote-font-size-tiny);
|
font-size: var(--quote-font-size-tiny);
|
||||||
}
|
}
|
||||||
|
.likerNames {
|
||||||
|
font-size: var(--font-size2);
|
||||||
|
font-family: 'NimbusSanL';
|
||||||
|
margin: var(--liker-names-margin);
|
||||||
|
line-height: var(--liker-names-vertical-spacing2);
|
||||||
|
}
|
||||||
.profileHeader img.vcard {
|
.profileHeader img.vcard {
|
||||||
width: var(--vcard-icon-size-tiny);
|
width: var(--vcard-icon-size-tiny);
|
||||||
float: right;
|
float: right;
|
||||||
|
|
|
@ -126,9 +126,9 @@ def html_likers_of_post(base_dir: str, nickname: str,
|
||||||
else:
|
else:
|
||||||
liker_name = get_nickname_from_actor(liker_actor)
|
liker_name = get_nickname_from_actor(liker_actor)
|
||||||
if likers_list:
|
if likers_list:
|
||||||
likers_list += ' '
|
likers_list += ' '
|
||||||
likers_list += \
|
likers_list += \
|
||||||
'<label class="labels">' + \
|
'<label class="likerNames">' + \
|
||||||
'<a href="' + liker_actor + '">' + liker_name + '</a>' + \
|
'<a href="' + liker_actor + '">' + liker_name + '</a>' + \
|
||||||
'</label>'
|
'</label>'
|
||||||
html_str += '<center>\n' + likers_list + '\n</center>\n'
|
html_str += '<center>\n' + likers_list + '\n</center>\n'
|
||||||
|
|
Loading…
Reference in New Issue