> http://tochetest1.tiddlyspot.com/
> This is a minimal example. If your screen is like mine you should see
> a gap between the password box and the tick box, and my question above
> was how to narrow that gap.

In your custom [[StyleSheet]], you wrote:
   .customInput input { width: 3em; }

However, this rule applies to more than just text fields...  it
affects all other "input" elements as well, including checkboxes,
radio buttons, and push buttons, but not "select" (listbox/droplist)
or "textarea" (multi-line text) elements.

In order to achieve the result you want, you need to limit the rule so
it is only applied to *password* input elements, but not the other
types of input elements (e.g., text, checkbox, radio, or button), like
this:
   .customInput input[type="password"] { width: 3em; }

enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to