FreederTeam / Freeder

An easy-to-use free feed reader
Other
5 stars 1 forks source link

Buttons look weird in Firefox for Android #49

Closed Phyks closed 10 years ago

Phyks commented 10 years ago

Buttons have a weird color and their labels are incorrect, in Firefox for Android.

tmos commented 10 years ago

this is because of property "background-color:" used instead of "background:". Note that background-color is a better choice, but mobile firefox (event firefox os) do weird stuff with it.

Phyks commented 10 years ago

Erf… ok.

Concerning the labels, I found that it's just that we did not explicitly set a “label” (not the HTML element, but the value attribute on <input type="submit"/>) for some inputs, for instance on the login form. Hence, in my French Firefox, it's Envoyer, and in Firefox for Android, it's Submit Query.

Phyks commented 10 years ago

Fixed for the inputs.

tmos commented 10 years ago

Ah, this is it… I had the same issue for inputs and I didn't understood why… Thanks :)

Phyks commented 10 years ago

Nice, thanks !