Commit 91475c86 authored by Mark Otto's avatar Mark Otto
Browse files

fix #1631 by adding focus to radio buttons

parent 4a09cf04
Showing with 5 additions and 1 deletion
+5 -1
No preview for this file type
...@@ -654,7 +654,10 @@ input:focus, textarea:focus { ...@@ -654,7 +654,10 @@ input:focus, textarea:focus {
/* IE6-8 */ /* 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; -webkit-box-shadow: none;
-moz-box-shadow: none; -moz-box-shadow: none;
box-shadow: none; box-shadow: none;
......
...@@ -202,6 +202,7 @@ textarea:focus { ...@@ -202,6 +202,7 @@ textarea:focus {
outline: thin dotted \9; /* IE6-8 */ outline: thin dotted \9; /* IE6-8 */
} }
input[type="file"]:focus, input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus, input[type="checkbox"]:focus,
select:focus { select:focus {
.box-shadow(none); // override for file inputs .box-shadow(none); // override for file inputs
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment