Merge pull request #513 from LainLayer/square_avatars

Implemented square profile pictures preference
This commit is contained in:
Zed 2022-01-13 23:05:56 +01:00 committed by GitHub
commit cc0e4b1668
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 9 deletions

View file

@ -75,6 +75,9 @@ genPrefs:
hideReplies(checkbox, false):
"Hide tweet replies"
squareAvatars(checkbox, false):
"Square profile pictures"
Media:
mp4Playback(checkbox, true):
"Enable mp4 video playback (only for gifs)"

View file

@ -98,14 +98,16 @@
}
.avatar {
border-radius: 50%;
}
.avatar.mini {
margin-right: 5px;
margin-top: -1px;
width: 20px;
height: 20px;
&.round {
border-radius: 50%;
}
&.mini {
margin-right: 5px;
margin-top: -1px;
width: 20px;
height: 20px;
}
}
.attribution {

View file

@ -31,7 +31,9 @@ proc renderHeader(tweet: Tweet; retweet: string; prefs: Prefs): VNode =
var size = "_bigger"
if not prefs.autoplayGifs and tweet.profile.userPic.endsWith("gif"):
size = "_400x400"
genImg(tweet.profile.getUserPic(size), class="avatar")
let round = if prefs.squareAvatars: "" else: " round"
genImg(tweet.profile.getUserPic(size), class=(&"avatar{round}"))
tdiv(class="tweet-name-row"):
tdiv(class="fullname-and-username"):