]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
round select list corners
authorMark Otto <markotto@twitter.com>
Tue, 19 Jun 2012 20:25:35 +0000 (13:25 -0700)
committerMark Otto <markotto@twitter.com>
Tue, 19 Jun 2012 20:25:35 +0000 (13:25 -0700)
docs/assets/css/bootstrap.css
less/forms.less

index 838d5a611ae91a59a6b040cfad61edc14008892f..81fb023d9d3670e923f8b48fa16e937ac378163c 100644 (file)
@@ -795,6 +795,9 @@ input[type="color"],
   font-size: 13px;
   line-height: 18px;
   color: #555555;
+  -webkit-border-radius: 3px;
+     -moz-border-radius: 3px;
+          border-radius: 3px;
 }
 
 input,
@@ -824,9 +827,6 @@ input[type="color"],
 .uneditable-input {
   background-color: #ffffff;
   border: 1px solid #cccccc;
-  -webkit-border-radius: 3px;
-     -moz-border-radius: 3px;
-          border-radius: 3px;
   -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
      -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
           box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
index 9f5e721bbe364a920bfdffb869a595f692997f67..4f9d9f3e12a41037b1c5e0127c78fc98b113110b 100644 (file)
@@ -85,6 +85,7 @@ input[type="color"],
   font-size: @baseFontSize;
   line-height: @baseLineHeight;
   color: @gray;
+  .border-radius(@inputBorderRadius);
 }
 
 // Reset appearance properties for textual inputs and textarea
@@ -116,7 +117,6 @@ input[type="color"],
 .uneditable-input {
   background-color: @inputBackground;
   border: 1px solid @inputBorder;
-  .border-radius(@inputBorderRadius);
   .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
   @transition: border linear .2s, box-shadow linear .2s;
   .transition(@transition);