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): hideReplies(checkbox, false):
"Hide tweet replies" "Hide tweet replies"
squareAvatars(checkbox, false):
"Square profile pictures"
Media: Media:
mp4Playback(checkbox, true): mp4Playback(checkbox, true):
"Enable mp4 video playback (only for gifs)" "Enable mp4 video playback (only for gifs)"

View file

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

View file

@ -31,7 +31,9 @@ proc renderHeader(tweet: Tweet; retweet: string; prefs: Prefs): VNode =
var size = "_bigger" var size = "_bigger"
if not prefs.autoplayGifs and tweet.profile.userPic.endsWith("gif"): if not prefs.autoplayGifs and tweet.profile.userPic.endsWith("gif"):
size = "_400x400" 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="tweet-name-row"):
tdiv(class="fullname-and-username"): tdiv(class="fullname-and-username"):