mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-20 04:11:39 +02:00
fix #1631 by adding focus to radio buttons
This commit is contained in:
Binary file not shown.
5
docs/assets/css/bootstrap.css
vendored
5
docs/assets/css/bootstrap.css
vendored
@@ -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 {
|
|||||||
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
|
||||||
|
Reference in New Issue
Block a user