diff options
author | r <r@freesoftwareextremist.com> | 2020-09-27 06:54:50 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2020-09-27 06:55:14 +0000 |
commit | 0b8c41ca7c99f6ab31a3769b16c760fd028f7c2b (patch) | |
tree | 7f1a41d63bab1f81afe73501332b238e24f3115d /templates | |
parent | 8dbea3731f836d0332096adb921310fc78bf385d (diff) | |
download | bloat-0b8c41ca7c99f6ab31a3769b16c760fd028f7c2b.tar.gz bloat-0b8c41ca7c99f6ab31a3769b16c760fd028f7c2b.zip |
Fix CSS issues
This re-adds some of the CSS3 properties
Diffstat (limited to 'templates')
-rw-r--r-- | templates/notification.tmpl | 2 | ||||
-rw-r--r-- | templates/userlist.tmpl | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/templates/notification.tmpl b/templates/notification.tmpl index b138a40..6973fa5 100644 --- a/templates/notification.tmpl +++ b/templates/notification.tmpl @@ -19,7 +19,7 @@ {{range .Notifications}} <div class="notification-container {{if .Pleroma}}{{if not .Pleroma.IsSeen}}unread{{end}}{{end}}"> {{if eq .Type "follow"}} - <div> + <div class="notification-follow-container"> <div class="status-profile-img-container"> <a class="img-link" href="/user/{{.Account.ID}}"> <img class="status-profile-img" src="{{.Account.AvatarStatic}}" title="@{{.Account.Acct}}" alt="profile-avatar" height="48" /> diff --git a/templates/userlist.tmpl b/templates/userlist.tmpl index 52ef83e..ec8884d 100644 --- a/templates/userlist.tmpl +++ b/templates/userlist.tmpl @@ -2,12 +2,12 @@ <div class="user-list-container"> {{range .}} <div class="user-list-item"> - <div> + <div class="user-list-profile-img"> <a class="img-link" href="/user/{{.ID}}"> <img class="status-profile-img" src="{{.AvatarStatic}}" title="@{{.Acct}}" alt="avatar" height="48" /> </a> </div> - <div> + <div class="user-list-name"> <div class="status-dname"> {{EmojiFilter .DisplayName .Emojis}} </div> <a class="img-link" href="/user/{{.ID}}"> <div class="status-uname"> @{{.Acct}} </div> |