diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-06-14 14:08:04 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-06-14 14:08:04 +0200 |
commit | 06fd7e0d21e8852edcc9e7f05b0649adcb1c9c37 (patch) | |
tree | db22bff5dde1eed95262fd071d6a1fb10eb4a566 /core/css | |
parent | 7889f2ef5c086d050cb88e2943253af84362365f (diff) | |
download | nextcloud-server-06fd7e0d21e8852edcc9e7f05b0649adcb1c9c37.tar.gz nextcloud-server-06fd7e0d21e8852edcc9e7f05b0649adcb1c9c37.zip |
remove dotted outlines in Firefox, fix #3712
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/styles.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 58e750da4fa..40a17a42876 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -664,3 +664,10 @@ 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 */ +} |