summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2013-07-26 05:15:02 -0700
committerJörn Friedrich Dreyer <jfd@butonic.de>2013-07-26 05:15:02 -0700
commit98e76b8978fafb390205b133df8bd8a172a9a32d (patch)
tree803e243311bb4029f5a9477680f150f3a9b2108e /core
parente4132a61c9895b14bebd5008763c2a69de29d408 (diff)
parenta0f574ccd7330e2c14a9098c65a40d7c81e96513 (diff)
downloadnextcloud-server-98e76b8978fafb390205b133df8bd8a172a9a32d.tar.gz
nextcloud-server-98e76b8978fafb390205b133df8bd8a172a9a32d.zip
Merge pull request #4199 from owncloud/login-cleanup
Login cleanup IE8 fixes
Diffstat (limited to 'core')
-rw-r--r--core/css/styles.css21
1 files changed, 21 insertions, 0 deletions
diff --git a/core/css/styles.css b/core/css/styles.css
index a4c84fa07a2..0dd66fb5b7c 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -844,6 +844,27 @@ button.loading {
border: 0;
}
+/* IE8 needs background to be set to same color to make transparency look good. */
+.lte9 #body-login form input[type="text"] {
+ border: 1px solid lightgrey; /* use border to add 1px line between input fields */
+ background-color: white; /* don't change background on hover */
+}
+.lte9 #body-login form input[type="password"] {
+ /* leave out top border for 1px line between input fields*/
+ border-left: 1px solid lightgrey;
+ border-right: 1px solid lightgrey;
+ border-bottom: 1px solid lightgrey;
+ background-color: white; /* don't change background on hover */
+}
+.lte9 #body-login form label.infield {
+ background-color: white; /* don't change background on hover */
+ -ms-filter: "progid:DXImageTransform.Microsoft.Chroma(color='white')";
+}
+/* disable opacity of info text on gradient
+ sice we cannot set a good backround color to use the filter&background hack as with the input labels */
+.lte9 #body-login p.info {
+ filter: initial;
+}
/* deactivate show password toggle for IE. Does not work for 8 and 9+ have their own implementation. */
.ie #show, .ie #show+label {
display: none;