Remove inner border on toggles

This commit is contained in:
Greg Considine
2017-03-21 13:39:05 -04:00
parent 10a51c72f0
commit 7d4b3a08f2
2 changed files with 20 additions and 2 deletions

View File

@@ -490,14 +490,23 @@ input[type='radio']:checked:before {
margin: 0 0 0 10px; margin: 0 0 0 10px;
padding-bottom: 5px; padding-bottom: 5px;
.btn.btn-xs { label {
padding: 0px 10px; &:first-child {
border-right: none;
}
&:last-child {
border-left: none;
}
} }
input { input {
visibility: hidden; visibility: hidden;
position: absolute; position: absolute;
} }
.btn.btn-xs {
padding: 0px 10px;
}
} }
.Form-inputLabel{ .Form-inputLabel{

View File

@@ -23,6 +23,15 @@
align-items: center; align-items: center;
justify-content: center; justify-content: center;
.PortalMode-filter > button {
&:first-child {
border-right: none;
}
&:last-child {
border-left: none;
}
}
.btn.btn-xs { .btn.btn-xs {
padding: 1px 10px; padding: 1px 10px;
} }