From 0b8c41ca7c99f6ab31a3769b16c760fd028f7c2b Mon Sep 17 00:00:00 2001
From: r <r@freesoftwareextremist.com>
Date: Sun, 27 Sep 2020 06:54:50 +0000
Subject: Fix CSS issues

This re-adds some of the CSS3 properties
---
 templates/notification.tmpl | 2 +-
 templates/userlist.tmpl     | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

(limited to 'templates')

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>
-- 
cgit v1.2.3