diff options
author | r <r@freesoftwareextremist.com> | 2019-12-15 17:37:58 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2019-12-15 17:37:58 +0000 |
commit | f68d72ae0eb2eb6c15cd225c1a3b9185aaa20e3f (patch) | |
tree | 301e89bb8ebb56b9756fe322eb9ad953bac2661e /static | |
parent | 51a4b16af518fde883df50f7f627fda21c18065e (diff) | |
download | bloat-f68d72ae0eb2eb6c15cd225c1a3b9185aaa20e3f.tar.gz bloat-f68d72ae0eb2eb6c15cd225c1a3b9185aaa20e3f.zip |
Add notification support
Diffstat (limited to 'static')
-rw-r--r-- | static/main.css | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/static/main.css b/static/main.css index 3f551cc..8865820 100644 --- a/static/main.css +++ b/static/main.css @@ -17,11 +17,10 @@ .status-profile-img { height: 48px; width: 48px; - object-fit: contain; + margin-right: 8px; } .status { - margin: 0 8px; } .status a { @@ -119,7 +118,6 @@ height: 24px; width: 24px; margin-bottom: -8px; - object-fit: contain; } .retweet-info .status-dname{ @@ -143,3 +141,23 @@ .pagination a { margin: 0 8px; } + +.notification-container { + margin: 4px 0; + padding: 4px 4px; + border-left: 4px solid transparent; +} + +.notification-container.unread { + border-color: #777777; +} + +.notification-follow-container, +.notification-like-container, +.notification-retweet-container { + display: flex; +} + +.notification-follow-uname { + margin-top: 8px; +} |