From b44e9d69ad31c7f1e2ff6e4ef5302d81be4e93c4 Mon Sep 17 00:00:00 2001 From: Daisuke Date: Sat, 25 Sep 2021 11:30:50 -0500 Subject: [PATCH] 250921 Re-enable bookmarks and styleshet fix --- css/style.css | 4 ++++ layout/header.php | 3 --- modules/timeline.php | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/css/style.css b/css/style.css index 1001a9d..1f9b1a5 100644 --- a/css/style.css +++ b/css/style.css @@ -20,6 +20,10 @@ p { margin: 0px !important; } +.content p { + margin-bottom: 1em !important; +} + body { margin: 0; } diff --git a/layout/header.php b/layout/header.php index a928444..0581400 100644 --- a/layout/header.php +++ b/layout/header.php @@ -105,12 +105,9 @@ if ($logedin) { '> - - '> - diff --git a/modules/timeline.php b/modules/timeline.php index 2ede4d6..7efa817 100644 --- a/modules/timeline.php +++ b/modules/timeline.php @@ -208,7 +208,7 @@ if ((!isset($thread[0]['id']) && !empty($thread)) || !is_array($thread)) { $post['menu'] .= ($elem['account']['id'] != $user_settings['uid'] ? "
  •  Mute User
  • " : ""); $post['menu'] .= ($elem['account']['id'] != $user_settings['uid'] ? "
  •  Drop Thread
  • " : ""); $post['menu'] .= (isset($user_settings['pleroma']) ? "
  •  Hide Thread
  • " : ""); - $post['menu'] .= (isset($user_settings['pleroma']) ? "
  •  " . ($elem['bookmarked'] == true ? "Unb" : "B") . "ookmark
  • " : ""); + $post['menu'] .= "
  •  " . ($elem['bookmarked'] == true ? "Unb" : "B") . "ookmark
  • "; $post['menu'] .= ($elem['account']['id'] != $user_settings['uid'] ? "
  •  User is NSFW
  • " : ""); } $post['menu'] .= "
  •  Original Note
  • ";