You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 30, 2019. It is now read-only.
I notice a style error cause incomplete display of new thread.
The reason is ".forum-container .forum-new-thread" has style "position: absolute", so it wont auto expand it's parent element,
when height of this element large than 500 (.forum-container min-height), the over part will not visible.
There about 3 solutions
set "min-height" of ".forum-container" to 650
use "display: none" instead of "left: -110%" (no animation)
hide ".forum-topics" then set "position: relative" in click event of ".new-thread" (unstable)
I'm not sure which solution should take.
Picture, browser is firefox 30.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I notice a style error cause incomplete display of new thread.
The reason is ".forum-container .forum-new-thread" has style "position: absolute", so it wont auto expand it's parent element,
when height of this element large than 500 (.forum-container min-height), the over part will not visible.
There about 3 solutions
I'm not sure which solution should take.
Picture, browser is firefox 30.
The text was updated successfully, but these errors were encountered: