summaryrefslogtreecommitdiff
path: root/roundcubemail/skins/default/common.css
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-12-09 17:53:42 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-12-09 17:53:42 +0000
commit6ec5e244bc87dee9b8908bcebc587e9de129fb93 (patch)
treea98b75b8f908c4a1b8287011cef40e19ebc7bfda /roundcubemail/skins/default/common.css
parentd664168513404b08eb9501338240f177cf9c5199 (diff)
#1485455: fix checkboxes style in Opera
git-svn-id: https://svn.roundcube.net/trunk@2139 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/skins/default/common.css')
-rw-r--r--roundcubemail/skins/default/common.css24
1 files changed, 14 insertions, 10 deletions
diff --git a/roundcubemail/skins/default/common.css b/roundcubemail/skins/default/common.css
index 12cc2713b..0d90219cb 100644
--- a/roundcubemail/skins/default/common.css
+++ b/roundcubemail/skins/default/common.css
@@ -63,27 +63,31 @@ hr
border-style: none;
}
-input, textarea
+input[type="text"],
+input[type="button"],
+input[type="password"],
+textarea
{
font-size: 9pt;
font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
padding: 1px;
padding-left: 3px;
padding-right: 3px;
+ border: 1px solid #666666;
color: #333333;
background-color: #ffffff;
- border: 1px solid #666666;
- /* css hack for IE */
- background-color: expression(this.type=="checkbox" || this.type=="radio"? 'transparent' : '#ffffff');
- border-width: expression(this.type=="checkbox" || this.type=="radio"? '0' : '1px');
}
-input[type="checkbox"],
-input[type="radio"]
+input, textarea
{
- border: 0;
- padding: 0;
- background-color: transparent;
+ color: #333333;
+ padding-left: 3px;
+ padding-right: 3px;
+ /* IE hacks for input elements */
+ border-style: expression(this.type=='checkbox' || this.type=='radio' ? 'none' : 'solid');
+ border-width: expression(this.type=='checkbox' || this.type=='radio' ? '0' : '1px');
+ border-color: expression(this.type=='checkbox' || this.type=='radio' ? '' : '#666666');
+ background-color: expression(this.type=='checkbox' || this.type=='radio' ? 'transparent' : '#ffffff');
}
input.button