Merge pull request #4130 from owncloud/ie-show-password

deactivate show password toggle for IE
This commit is contained in:
Morris Jobke 2013-07-20 05:22:37 -07:00
commit d0b6689c62
1 changed files with 9 additions and 0 deletions

View File

@ -673,7 +673,16 @@ button.loading {
/* ---- BROWSER-SPECIFIC FIXES ---- */
::-moz-focus-inner {
border: 0; /* remove dotted outlines in Firefox */
}
/* deactivate show password toggle for IE. Does not work for 8 and 9+ have their own implementation. */
.ie #show, .ie #show+label {
display: none;
visibility: hidden;
}