diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-07-23 18:14:37 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-07-23 18:42:35 +0200 |
commit | 84fa84d182095b3723b776f82d2cb0fb42cb7975 (patch) | |
tree | f2747c77b5c08ad563ee0c445643126cd749e0a1 | |
parent | d1a5dfc39711399bc5e69217d0ef8f167b17662c (diff) | |
download | nextcloud-server-84fa84d182095b3723b776f82d2cb0fb42cb7975.tar.gz nextcloud-server-84fa84d182095b3723b776f82d2cb0fb42cb7975.zip |
fix browser rendering issues
-rw-r--r-- | core/css/styles.css | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 0bfbe686320..fdcac990924 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -250,7 +250,7 @@ input[name="adminpass-clone"] { padding-left:1.8em; width:11.7em !important; } #body-login input[type="text"], #body-login input[type="password"], #body-login input[type="email"] { - border: 1px solid rgba(0,0,0,.8); + border: 1px solid #323233; -moz-box-shadow: 0 1px 0 rgba(255,255,255,.15), 0 1px 3px rgba(0,0,0,.25) inset; -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.15), 0 1px 3px rgba(0,0,0,.25) inset; box-shadow: 0 1px 0 rgba(255,255,255,.15), 0 1px 3px rgba(0,0,0,.25) inset; @@ -838,8 +838,9 @@ button.loading { /* ---- BROWSER-SPECIFIC FIXES ---- */ +/* remove dotted outlines in Firefox */ ::-moz-focus-inner { - border: 0; /* remove dotted outlines in Firefox */ + border: 0; } /* deactivate show password toggle for IE. Does not work for 8 and 9+ have their own implementation. */ @@ -847,3 +848,8 @@ button.loading { display: none; visibility: hidden; } + +/* fix installation screen rendering issue for IE8+9 */ +.lte9 #body-login { + height: auto !important; +} |