Hi,
With TW5, the theme shows differently in Safari than in Firefox. This is the case both with the TiddlyWiki.com website and with the empty TW5 downloads. I'm not sure if this is a bug, but it does seem like one because I would think the theme is supposed to show up the same across any browser (ideally, anyway). Because this can be 'fixed' by adding a Stylesheet and theming the input boxes manually, I know it can be done. I did do a search for this issue but it didn't come up when I searched, so I wanted to add this just in case it wasn't noticed.
I've attached a screenshot of the different theme appearances in Safari vs. Firefox on OS X.
I hope this is helpful!
~Hiru
P.S. - To those who are curious, here's the theme alterations I used to correct this issue (at first, I had trouble making themes with TW5, so I wanted to include this for those who feel as lost as I did):
1. Create a new tiddler -- name it whatever you want.
2. Give it the tag "$:/tags/Stylesheet" (without the quotes) in the area right below the tiddler title.
3. Below the text area for the tiddler's content, change the type to "text/css"
4. Enter the CSS code below into the tiddler's content (these are example styles, you can change the border style, thickness, and color as you wish -- they don't need to be the same):
/* For all input boxes */
input {
border: 1px solid #aaa;
}
/* For the search box, specifically */
.tc-search input {
border: 1px solid #aaa;
}
5. Save the tiddler.