Skip to content

Commit efd3758

Browse files
committed
tabindex = -1 on input container buttons
1 parent 909c879 commit efd3758

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/mdInputContainer/mdInputContainer.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
<span class="md-count" v-if="enableCounter">{{ inputLength }} / {{ counterLength }}</span>
66

7-
<md-button class="md-icon-button md-toggle-password" @click="togglePasswordType" v-if="mdHasPassword">
7+
<md-button tabindex="-1" class="md-icon-button md-toggle-password" @click="togglePasswordType" v-if="mdHasPassword">
88
<md-icon>{{ showPassword ? 'visibility_off' : 'visibility' }}</md-icon>
99
</md-button>
1010

11-
<md-button class="md-icon-button md-clear-input" @click="clearInput" v-if="mdClearable && hasValue">
11+
<md-button tabindex="-1" class="md-icon-button md-clear-input" @click="clearInput" v-if="mdClearable && hasValue">
1212
<md-icon>clear</md-icon>
1313
</md-button>
1414
</div>

0 commit comments

Comments
 (0)