diff options
| author | Mark Otto <[email protected]> | 2012-02-05 02:14:25 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-02-05 02:14:25 -0800 |
| commit | 91475c865dd8fe224c574c1a15e8949fccdda8c0 (patch) | |
| tree | fa4a0c33680a5123e946cfd4662e20cad2888e70 | |
| parent | 4a09cf04d8d644734f91c9a9ce97091ad698fcce (diff) | |
| download | bootstrap-91475c865dd8fe224c574c1a15e8949fccdda8c0.tar.xz bootstrap-91475c865dd8fe224c574c1a15e8949fccdda8c0.zip | |
fix #1631 by adding focus to radio buttons
| -rw-r--r-- | docs/assets/bootstrap.zip | bin | 52395 -> 52404 bytes | |||
| -rw-r--r-- | docs/assets/css/bootstrap.css | 5 | ||||
| -rw-r--r-- | less/forms.less | 1 |
3 files changed, 5 insertions, 1 deletions
diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip Binary files differindex 78b660d7f..14e74c301 100644 --- a/docs/assets/bootstrap.zip +++ b/docs/assets/bootstrap.zip diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 2da793c7f..12b9af84d 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -654,7 +654,10 @@ input:focus, textarea:focus { /* IE6-8 */ } -input[type="file"]:focus, input[type="checkbox"]:focus, select:focus { +input[type="file"]:focus, +input[type="radio"]:focus, +input[type="checkbox"]:focus, +select:focus { -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; diff --git a/less/forms.less b/less/forms.less index 48f80396e..a8de0f24c 100644 --- a/less/forms.less +++ b/less/forms.less @@ -202,6 +202,7 @@ textarea:focus { outline: thin dotted \9; /* IE6-8 */ } input[type="file"]:focus, +input[type="radio"]:focus, input[type="checkbox"]:focus, select:focus { .box-shadow(none); // override for file inputs |
