diff --git a/src/components/mdButton/mdButton.scss b/src/components/mdButton/mdButton.scss index 9cc6848..7ab8c76 100644 --- a/src/components/mdButton/mdButton.scss +++ b/src/components/mdButton/mdButton.scss @@ -43,6 +43,10 @@ $button-icon-size: 40px; &:focus { outline: none; } + + &::-moz-focus-inner { + border:0; + } &:hover { &:not([disabled]) { diff --git a/src/components/mdCheckbox/mdCheckbox.vue b/src/components/mdCheckbox/mdCheckbox.vue index 494c597..93d9788 100644 --- a/src/components/mdCheckbox/mdCheckbox.vue +++ b/src/components/mdCheckbox/mdCheckbox.vue @@ -39,11 +39,11 @@ } }, methods: { - toggleCheck() { + toggleCheck($event) { if (!this.disabled) { this.checked = !this.checked; - this.$emit('change', this.checked); - this.$emit('input', this.checked); + this.$emit('change', this.checked, $event); + this.$emit('input', this.checked, $event); } } } diff --git a/src/components/mdRadio/mdRadio.vue b/src/components/mdRadio/mdRadio.vue index d3d4fb6..0348920 100644 --- a/src/components/mdRadio/mdRadio.vue +++ b/src/components/mdRadio/mdRadio.vue @@ -1,6 +1,6 @@