jacobwb / hashover

Free and Open Source PHP Comment System

Home Page:http://tildehash.com/?page=hashover

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

div .hashover-login-input is overlapping the input field

q2apro opened this issue · comments

In Firefox 33, Win7:

In the clip I am clicking the login button all the time:

vorschau

Weird that I could not find a CSS solution for this yet. It seems that the font icon is covering the button somehow, assigning another width or padding to the input does not work.

Found the solution, in modern.css:

#hashover .hashover-login-input:before {
    content: '\e808';
    width: 28px;
    cursor: pointer;
    pointer-events:none; /* add this line */
}