Skip to content

Commit 3e9dfa2

Browse files
drhaliburtonmarcosmoura
authored andcommitted
fix(MdInput): invert password on-off icons (#2008)
1 parent cc341e6 commit 3e9dfa2

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/components/MdField/MdField.vue

+2-3
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212

1313
<transition name="md-input-action" appear>
1414
<md-button tabindex="-1" class="md-icon-button md-dense md-input-action md-toggle-password" @click="togglePassword" v-if="hasPasswordToggle">
15-
<md-password-off-icon v-if="MdField.togglePassword" />
16-
<md-password-on-icon v-else />
15+
<md-password-on-icon v-if="MdField.togglePassword" />
16+
<md-password-off-icon v-else />
1717
</md-button>
1818
</transition>
1919
</div>
@@ -208,7 +208,6 @@
208208
font-family: inherit;
209209
font-size: 16px;
210210
line-height: $md-input-height;
211-
box-shadow: 0px 0px transparent; // firefox required fix
212211
213212
&[type="date"] {
214213
font-size: 16px;

0 commit comments

Comments
 (0)