forked from indymedia/epicyon
Search avatar class
parent
f693330d2b
commit
5903c15163
|
@ -189,12 +189,6 @@ a:link {
|
||||||
background-color: var(--main-bg-color);
|
background-color: var(--main-bg-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero-text img.title {
|
|
||||||
border-radius: 1%;
|
|
||||||
width: 30%;
|
|
||||||
min-width: 200px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hero-text img.emoji {
|
.hero-text img.emoji {
|
||||||
width: 50px;
|
width: 50px;
|
||||||
padding: 0 0;
|
padding: 0 0;
|
||||||
|
@ -1040,6 +1034,10 @@ div.gallery img {
|
||||||
width: 5%;
|
width: 5%;
|
||||||
min-width: 20px;
|
min-width: 20px;
|
||||||
}
|
}
|
||||||
|
.hero-text img.title {
|
||||||
|
border-radius: 1%;
|
||||||
|
width: 15%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 2200px) {
|
@media screen and (min-width: 2200px) {
|
||||||
|
@ -1408,4 +1406,8 @@ div.gallery img {
|
||||||
width: 15%;
|
width: 15%;
|
||||||
min-width: 20px;
|
min-width: 20px;
|
||||||
}
|
}
|
||||||
|
.hero-text img.title {
|
||||||
|
border-radius: 1%;
|
||||||
|
width: 25%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -6090,7 +6090,7 @@ def htmlProfileAfterSearch(recentPostsCache: {}, maxRecentPosts: int,
|
||||||
profileStr += \
|
profileStr += \
|
||||||
' <img loading="lazy" src="' + avatarUrl + \
|
' <img loading="lazy" src="' + avatarUrl + \
|
||||||
'" alt="' + avatarDescription + '" title="' + \
|
'" alt="' + avatarDescription + '" title="' + \
|
||||||
avatarDescription + '">'
|
avatarDescription + '" class="title">'
|
||||||
profileStr += ' <h1>' + displayName + '</h1>'
|
profileStr += ' <h1>' + displayName + '</h1>'
|
||||||
profileStr += ' <p><b>@' + searchNickname + '@' + \
|
profileStr += ' <p><b>@' + searchNickname + '@' + \
|
||||||
searchDomainFull + '</b></p>'
|
searchDomainFull + '</b></p>'
|
||||||
|
|
Loading…
Reference in New Issue