css inputs

bzr revid: fme@openerp.com-20110307142440-kby6620q7zvaq7xq
This commit is contained in:
Fabien Meghazi 2011-03-07 15:24:40 +01:00
parent a8394573ca
commit 01876da228
1 changed files with 15 additions and 0 deletions

View File

@ -95,6 +95,7 @@ body {
}
.openerp .filter_icon {
padding: 1px 2px 0px 2px;
margin: 0;
}
.openerp .filter_label {
font-weight: bold;
@ -127,3 +128,17 @@ body {
border-top-right-radius: 7px;
border-bottom-right-radius: 7px;
}
/* Inputs */
.openerp input[type="text"], .openerp input[type="password"], .openerp select, .openerp textarea {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
padding: 2px;
border: 1px solid #999;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
background: white;
}