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;
padding-bottom: 5px;
.btn.btn-xs {
padding: 0px 10px;
label {
&:first-child {
border-right: none;
}
&:last-child {
border-left: none;
}
}
input {
visibility: hidden;
position: absolute;
}
.btn.btn-xs {
padding: 0px 10px;
}
}
.Form-inputLabel{

View File

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