mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-07-27 23:37:11 -04:00
UI: Align article one entry lower
https://github.com/marienfressinaud/FreshRSS/issues/470
This commit is contained in:
@@ -236,14 +236,11 @@ function toggleContent(new_active, old_active) {
|
||||
relative_move = true;
|
||||
}
|
||||
|
||||
var new_pos = new_active.position().top,
|
||||
old_scroll = $(box_to_move).scrollTop();
|
||||
if (sticky_post) {
|
||||
if (hide_posts) {
|
||||
|
||||
new_pos = new_active.position().top;
|
||||
var new_pos = new_active.position().top - new_active.children('.flux_header').outerHeight(),
|
||||
old_scroll = $(box_to_move).scrollTop();
|
||||
|
||||
if (hide_posts) {
|
||||
if (relative_move) {
|
||||
new_pos += old_scroll;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user