2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-08 17:22:31 +03:00

Fixes #14053: Don't show radio/checkbox in justified button groups

This commit is contained in:
Mark Otto
2014-07-06 16:48:41 -07:00
parent 44f83fff90
commit 9be2bbb5ef
8 changed files with 23 additions and 14 deletions
+4 -2
View File
@@ -3427,8 +3427,10 @@ tbody.collapse.in {
.btn-group-justified > .btn-group .dropdown-menu { .btn-group-justified > .btn-group .dropdown-menu {
left: auto; left: auto;
} }
[data-toggle="buttons"] > .btn > input[type="radio"], [data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn > input[type="checkbox"] { [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
position: absolute; position: absolute;
z-index: -1; z-index: -1;
filter: alpha(opacity=0); filter: alpha(opacity=0);
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+4 -2
View File
@@ -3427,8 +3427,10 @@ tbody.collapse.in {
.btn-group-justified > .btn-group .dropdown-menu { .btn-group-justified > .btn-group .dropdown-menu {
left: auto; left: auto;
} }
[data-toggle="buttons"] > .btn > input[type="radio"], [data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn > input[type="checkbox"] { [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
position: absolute; position: absolute;
z-index: -1; z-index: -1;
filter: alpha(opacity=0); filter: alpha(opacity=0);
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+10 -5
View File
@@ -232,9 +232,14 @@
// //
// See https://github.com/twbs/bootstrap/pull/12794 for more. // See https://github.com/twbs/bootstrap/pull/12794 for more.
[data-toggle="buttons"] > .btn > input[type="radio"], [data-toggle="buttons"] {
[data-toggle="buttons"] > .btn > input[type="checkbox"] { > .btn,
position: absolute; > .btn-group > .btn {
z-index: -1; input[type="radio"],
.opacity(0); input[type="checkbox"] {
position: absolute;
z-index: -1;
.opacity(0);
}
}
} }