With this little bit of CSS, my form buttons now look flattened (2D) and I quite like the look:
input {
border: 1px solid #999;
}
However, for file fields (select file to upload), the button is still 3D. And then the border goes all around that button and the text next to it.
I tried fixing this problem by renaming input to .input, and then only applying it to my Submit/Cancel buttons, but now they look like how the file field looks. So how do I fix this so they all look flattened/2D?
Also, is there a way to create these form buttons as normal links? I quite like how they look. I'm programming in Rails so it would be nice if you could post the helper function for that if it's available.