From f9b5f372acb36ffc6bdeb0d00ca87344559fcb44 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Thu, 22 Dec 2022 01:05:30 +0000 Subject: [PATCH] Responsive styling fix, shorter pages Refs #102 --- activities/views/timelines.py | 10 +++++----- static/css/style.css | 3 ++- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/activities/views/timelines.py b/activities/views/timelines.py index ff77826..855a066 100644 --- a/activities/views/timelines.py +++ b/activities/views/timelines.py @@ -23,7 +23,7 @@ class Home(TemplateView): def get_context_data(self): events = TimelineService(self.request.identity).home() - paginator = Paginator(events, 50) + paginator = Paginator(events, 25) page_number = self.request.GET.get("page") context = { "interactions": PostInteraction.get_event_interactions( @@ -48,7 +48,7 @@ class Tag(ListView): "current_page": "tag", "allows_refresh": True, } - paginate_by = 50 + paginate_by = 25 def get(self, request, hashtag, *args, **kwargs): tag = hashtag.lower().lstrip("#") @@ -80,7 +80,7 @@ class Local(ListView): "current_page": "local", "allows_refresh": True, } - paginate_by = 50 + paginate_by = 25 def get_queryset(self): return TimelineService(self.request.identity).local() @@ -101,7 +101,7 @@ class Federated(ListView): "current_page": "federated", "allows_refresh": True, } - paginate_by = 50 + paginate_by = 25 def get_queryset(self): return TimelineService(self.request.identity).federated() @@ -122,7 +122,7 @@ class Notifications(ListView): "current_page": "notifications", "allows_refresh": True, } - paginate_by = 50 + paginate_by = 25 notification_types = { "followed": TimelineEvent.Types.followed, "boosted": TimelineEvent.Types.boosted, diff --git a/static/css/style.css b/static/css/style.css index 9cb8513..d4c1f7c 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -1227,7 +1227,8 @@ table.metadata td .emoji { } -@media (max-width: 920px) or (display-mode: standalone) { +@media (max-width: 920px), +(display-mode: standalone) { html { scrollbar-color: var(--color-bg-main) var(--color-text-duller);