Merge pull request #315 from Safelite/CSR-453-outline-on-list-button-fix
Remove outline from list-button.
This commit is contained in:
commit
ff35d2e75c
1 changed files with 5 additions and 3 deletions
|
|
@ -128,9 +128,9 @@ export default {
|
||||||
fieldOptions['initialValue'] = fieldOptions.potentialInitialValue;
|
fieldOptions['initialValue'] = fieldOptions.potentialInitialValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
const {
|
const {
|
||||||
checked,
|
checked,
|
||||||
handleChange,
|
handleChange,
|
||||||
errors,
|
errors,
|
||||||
} = useField(props.groupName, props.validationRules, fieldOptions);
|
} = useField(props.groupName, props.validationRules, fieldOptions);
|
||||||
|
|
||||||
|
|
@ -147,6 +147,7 @@ export default {
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.list-group {
|
.list-group {
|
||||||
&.list-button {
|
&.list-button {
|
||||||
|
outline: none;
|
||||||
input[type="radio"],
|
input[type="radio"],
|
||||||
input[type="checkbox"] {
|
input[type="checkbox"] {
|
||||||
position: static; //override bootstrap
|
position: static; //override bootstrap
|
||||||
|
|
@ -183,6 +184,7 @@ export default {
|
||||||
border-radius: $border-radius-lg;
|
border-radius: $border-radius-lg;
|
||||||
border: 1px solid $gray-500;
|
border: 1px solid $gray-500;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
outline: none;
|
||||||
|
|
||||||
span {
|
span {
|
||||||
&.small {
|
&.small {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue