brite: fix btn-group borders

This commit is contained in:
Thomas Park
2025-04-04 23:15:01 -04:00
parent 8b3571acbb
commit 7cbb5e390f
14 changed files with 58 additions and 12 deletions

View File

@@ -101,15 +101,24 @@
color: $white;
}
.btn-group {
.btn {
margin-left: 0;
}
}
.btn-group,
.btn-group-vertical {
.btn {
&:hover,
&:active,
&:focus {
z-index: 0;
}
}
> .btn-check:focus + .btn,
> .btn-check:checked + .btn {
z-index: 0;
}

View File

@@ -12246,12 +12246,19 @@ textarea.form-control-lg {
color: #fff;
}
.btn-group .btn:hover, .btn-group .btn:focus,
.btn-group .btn {
margin-left: 0;
}
.btn-group .btn:hover, .btn-group .btn:active, .btn-group .btn:focus,
.btn-group-vertical .btn:hover,
.btn-group-vertical .btn:active,
.btn-group-vertical .btn:focus {
z-index: 0;
}
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn-check:checked + .btn {
z-index: 0;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -12220,12 +12220,19 @@ textarea.form-control-lg {
color: #fff;
}
.btn-group .btn:hover, .btn-group .btn:focus,
.btn-group .btn {
margin-right: 0;
}
.btn-group .btn:hover, .btn-group .btn:active, .btn-group .btn:focus,
.btn-group-vertical .btn:hover,
.btn-group-vertical .btn:active,
.btn-group-vertical .btn:focus {
z-index: 0;
}
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn-check:checked + .btn {
z-index: 0;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long