fix font-sizes of input fields for exotic browsers#1550
fix font-sizes of input fields for exotic browsers#1550Alkarex merged 4 commits intoFreshRSS:devfrom mszkb:dev
Conversation
p/themes/base-theme/template.css
Outdated
| input, select, textarea { | ||
| display: inline-block; | ||
| max-width: 100%; | ||
| font-size: inital; |
There was a problem hiding this comment.
There is a typo: it is initial ;-)
|
Oh yes, stupid me. Fixed in 20281fb |
|
Hmmm, to fix this issue on all browsers, it needs a reset. Firefox and Chrome ignore the font-size from .post origine.css:635 and .stick origine.css:115. They take the fallback to the user agents default. QubZilla inherites font-size: 0 from .stick. Anyway.. It would be your call to risk a reset of the font-size or ignore it, due to low user count of QubZilla. |
p/themes/base-theme/template.css
Outdated
| .tree { | ||
| margin: 0; | ||
| padding: 0 0 15em 0; | ||
| padding: 0; |
p/themes/base-theme/template.css
Outdated
| input, select, textarea { | ||
| display: inline-block; | ||
| max-width: 100%; | ||
| font-size: initial; |
There was a problem hiding this comment.
I suggest trying with font-size: 0.8rem; instead.


There was no Placeholder inside input fields. Also the written text inside password-fields and adding subscription were super small (font-size: 0; inherited from .stick origine.css:115)
See my comment below for screenshots.