Skip to content

Unwanted automatic down scrolling on new message (+ FIX) #10

@thimo

Description

@thimo

In my Skype client (Mac Skype 6.1.60) the chat view scrolls down on each new message (quite irritating). Where in the default theme the view only scrolls down if you're near the bottom.

The cause of this is in the main.css:

html, body {
height: 100%;
}

With "height: 100%;" the document.body.offsetHeight always returns the height of the window and thus the method _nearBottom() always returns true. This "height: 100%;" isn't in the default theme.

Changing the CSS to this fixes the automatic scrolling behavior:

html, body {
/*height: 100%; */
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions