css inputs
authorFabien Meghazi <fme@openerp.com>
Mon, 7 Mar 2011 14:24:40 +0000 (15:24 +0100)
committerFabien Meghazi <fme@openerp.com>
Mon, 7 Mar 2011 14:24:40 +0000 (15:24 +0100)
bzr revid: fme@openerp.com-20110307142440-kby6620q7zvaq7xq

addons/base/static/openerp/base.css

index 04b4faf..8279ae6 100644 (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;
+}