diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-07-19 15:17:28 +0200 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-07-20 15:41:06 +0200 |
commit | 6b0c35b20b8587f253df1a17ec6c2cbb03f73127 (patch) | |
tree | 0e22ee3052c4d79d3cab316c135dd4193afd6368 /core | |
parent | a0dc41c0aba7369931481284352821d2e8c709f3 (diff) | |
download | nextcloud-server-6b0c35b20b8587f253df1a17ec6c2cbb03f73127.tar.gz nextcloud-server-6b0c35b20b8587f253df1a17ec6c2cbb03f73127.zip |
deactivate show password toggle for IE
Conflicts:
core/css/styles.css
Diffstat (limited to 'core')
-rw-r--r-- | core/css/styles.css | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index eafb34db6b0..c6d052f74dc 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -611,3 +611,19 @@ button.loading { background-position: right 10px center; background-repeat: no-repeat; padding-right: 30px; } + + + + + +/* ---- 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; +} |