diff options
| author | Mark Otto <[email protected]> | 2011-06-30 10:40:28 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2011-06-30 10:40:28 -0700 |
| commit | 588b2da937dd5c34766863fba3a9daaf2276d900 (patch) | |
| tree | d13e69999b2724c80be268e0819df01345c5a2bc /lib/forms.less | |
| parent | 6aae3930c92052a49686c1bd73a264da905ce898 (diff) | |
| download | bootstrap-588b2da937dd5c34766863fba3a9daaf2276d900.tar.xz bootstrap-588b2da937dd5c34766863fba3a9daaf2276d900.zip | |
updated docs, fixed language, added copy-code js for selecting text on focus
Diffstat (limited to 'lib/forms.less')
| -rw-r--r-- | lib/forms.less | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/forms.less b/lib/forms.less index 6052978c6..ab82c6a09 100644 --- a/lib/forms.less +++ b/lib/forms.less @@ -62,7 +62,7 @@ form { line-height: @baseline; height: @baseline; color: @gray; - border: 1px solid #bbb; + border: 1px solid #ccc; .border-radius(3px); } select, @@ -85,13 +85,15 @@ form { select, textarea { @transition: border linear .2s, box-shadow linear .2s; .transition(@transition); + .box-shadow(inset 0 1px 3px rgba(0,0,0,.1)); } input[type=text]:focus, input[type=password]:focus, textarea:focus { outline: none; - border-color: rgba(82,168,236,.75); - .box-shadow(0 0 8px rgba(82,168,236,.5)); + border-color: rgba(82,168,236,.8); + @shadow: inset 0 1px 3px rgba(0,0,0,.1), 0 0 8px rgba(82,168,236,.6); + .box-shadow(@shadow); } // Error styles div.error { |
