diff options
author | ivan <ivan> | 2010-03-21 23:56:20 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-03-21 23:56:20 +0000 |
commit | e88b59d34a321f2a5f2d2e44ad38a356f3a42fb4 (patch) | |
tree | bf8692af79d8a2b465ceb8f8a1c402ec65169bfa /httemplate/elements | |
parent | bf4223e554e0eb72f45f82392442780e8af4e0f9 (diff) |
fix inadvertant button styling
Diffstat (limited to 'httemplate/elements')
-rw-r--r-- | httemplate/elements/freeside.css | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/httemplate/elements/freeside.css b/httemplate/elements/freeside.css index 73434f360..f96fcc867 100644 --- a/httemplate/elements/freeside.css +++ b/httemplate/elements/freeside.css @@ -16,15 +16,25 @@ a:hover { color: #7e0079; } -textarea, input { +textarea, input[type="text"] { border: 1px solid #666666; padding: 1px; } -textarea:focus, input:focus { +textarea:hover, input[type="text"]:hover { + border: 1px solid #7e0079; + padding: 1px; +} + +textarea:focus, input[type="text"]:focus { background-color: #ffffdd; border: 1px solid #7e0079; } +input[type="reset"]:hover, input[type="submit"]:hover, input[class="button"]:hover { + /* border: 1px solid #7e0079; */ + color: #7e0079; +} + /* a:focus { background-color: #ccccee } */ |