summaryrefslogtreecommitdiffstats
path: root/core/css
diff options
context:
space:
mode:
Diffstat (limited to 'core/css')
-rw-r--r--core/css/styles.css11
1 files changed, 10 insertions, 1 deletions
diff --git a/core/css/styles.css b/core/css/styles.css
index c328804f816..490619c00d4 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -681,11 +681,20 @@ button.loading {
+
+
/* ---- BROWSER-SPECIFIC FIXES ---- */
+
::-moz-focus-inner {
border: 0; /* remove dotted outlines in Firefox */
}
.lte8 .delete-icon { background-image: url('../img/actions/delete.png'); }
.lte8 .delete-icon:hover, .delete-icon:focus {
background-image: url('../img/actions/delete-hover.png');
-} \ No newline at end of file
+}
+
+/* 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;
+}