Fix <hr> styling on empty search page

pull/1940/head
syeopite 3 years ago
parent d793d4ba78
commit 4a095eb98e
No known key found for this signature in database
GPG Key ID: 6FA616E5A5294A82

@ -126,35 +126,35 @@ class Invidious::Routes::PreferencesRoute < Invidious::Routes::BaseRoute
# Convert to JSON and back again to take advantage of converters used for compatability # Convert to JSON and back again to take advantage of converters used for compatability
preferences = Preferences.from_json({ preferences = Preferences.from_json({
annotations: annotations, annotations: annotations,
annotations_subscribed: annotations_subscribed, annotations_subscribed: annotations_subscribed,
autoplay: autoplay, autoplay: autoplay,
captions: captions, captions: captions,
comments: comments, comments: comments,
continue: continue, continue: continue,
continue_autoplay: continue_autoplay, continue_autoplay: continue_autoplay,
dark_mode: dark_mode, dark_mode: dark_mode,
latest_only: latest_only, latest_only: latest_only,
listen: listen, listen: listen,
local: local, local: local,
locale: locale, locale: locale,
max_results: max_results, max_results: max_results,
notifications_only: notifications_only, notifications_only: notifications_only,
player_style: player_style, player_style: player_style,
quality: quality, quality: quality,
quality_dash: quality_dash, quality_dash: quality_dash,
default_home: default_home, default_home: default_home,
feed_menu: feed_menu, feed_menu: feed_menu,
automatic_instance_redirect: automatic_instance_redirect, automatic_instance_redirect: automatic_instance_redirect,
related_videos: related_videos, related_videos: related_videos,
sort: sort, sort: sort,
speed: speed, speed: speed,
thin_mode: thin_mode, thin_mode: thin_mode,
unseen_only: unseen_only, unseen_only: unseen_only,
video_loop: video_loop, video_loop: video_loop,
volume: volume, volume: volume,
extend_desc: extend_desc, extend_desc: extend_desc,
vr_mode: vr_mode, vr_mode: vr_mode,
}.to_json).to_json }.to_json).to_json
if user = env.get? "user" if user = env.get? "user"

@ -96,7 +96,11 @@
</details> </details>
<% end %> <% end %>
<hr/> <% if count == 0 %>
<hr style="margin: 0;"/>
<% else %>
<hr/>
<% end %>
<div class="pure-g h-box v-box"> <div class="pure-g h-box v-box">
<div class="pure-u-1 pure-u-lg-1-5"> <div class="pure-u-1 pure-u-lg-1-5">

Loading…
Cancel
Save