-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Css issues when using a really old punbb mod (.pun fieldset .rbox input
and .pun fieldset .rbox br
css rules)
#28
Comments
Thank you! Slightly changed. Added condition for type="radio" too. |
Also one other issue I encountered: The math captcha can turn the "-" symbol into "to reduce". But that's not standard English for subtraction at all, I had no idea what it meant until I read the source code. "Reduce" is something you do to a fraction, like changing 5/10 into 1/2. I'd replace "to reduce" with "subtract". |
Ok. I use google translate to write in english. It is he who offers translation options. |
Caught another CSS bug...
Having I changed it to this:
|
This is not true.
|
In the style .css files, there is a rule applied:
But I had an issue with this. I was re-integrating some old code for the Punbb Attachment Mod 2.0, which makes use of
input
tags which aren't checkboxes, and places them inside of therbox
div. You get a tiny 16x16 button that's not properly labeled as "Browse...", and it is positioned in a bad location from the margin rule.If you make the rule apply only to checkboxes by using
.pun fieldset .rbox input[type="checkbox"] {
, then only checkboxes get shrunken down to 16px and have their margin changed.The other CSS issue I encountered was this one:
This forcefully removes the line breaks used by the attachment mod, so I had to comment this rule out.
The text was updated successfully, but these errors were encountered: