summaryrefslogtreecommitdiffstats
path: root/core/css
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-07-23 16:24:34 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2013-07-23 16:24:34 +0200
commit2a420218156d1e4ed3f88a50fd3b0d60476eeeb9 (patch)
treee0701915bb9a1fce746aff91fb6a4b99a13361b9 /core/css
parentcdb993ad69969964c433cf414b549c52b298c67d (diff)
parenta94c55be987127d148b3a6d5820bf06fc9d74068 (diff)
downloadnextcloud-server-2a420218156d1e4ed3f88a50fd3b0d60476eeeb9.tar.gz
nextcloud-server-2a420218156d1e4ed3f88a50fd3b0d60476eeeb9.zip
Merge branch 'master' into delete-fix
Conflicts: core/css/styles.css
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;
+}