summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2013-07-19 15:17:28 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2013-07-19 15:17:28 +0200
commit35fc149ef09531f5dcd623fae8ddf000adafb77c (patch)
tree64d671d1e8bd713b4971f11e0c09642a02914849
parentae82f7fd1736d3db36222a97684d98fe6db20dea (diff)
downloadnextcloud-server-35fc149ef09531f5dcd623fae8ddf000adafb77c.tar.gz
nextcloud-server-35fc149ef09531f5dcd623fae8ddf000adafb77c.zip
deactivate show password toggle for IE
-rw-r--r--core/css/styles.css9
1 files changed, 9 insertions, 0 deletions
diff --git a/core/css/styles.css b/core/css/styles.css
index ca2d082eb32..7d927da151c 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -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;
+}