diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-09-30 15:14:28 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-09-30 15:14:28 +0200 |
commit | 7db9690096f2b78d36acb595ed18e74068e7edde (patch) | |
tree | 52ef7e95966330923975cc3bd35b7079614910fd | |
parent | acd6c9b605c4d66ab2176bbb1f7b1952c4e7981d (diff) | |
parent | 42eb2149ad94a0a937e3a2ee09ce44be443c30f6 (diff) | |
download | nextcloud-server-7db9690096f2b78d36acb595ed18e74068e7edde.tar.gz nextcloud-server-7db9690096f2b78d36acb595ed18e74068e7edde.zip |
Merge pull request #19451 from owncloud/ie8-madness
Fix login page logo + login arrow
-rw-r--r-- | core/css/fixes.css | 13 | ||||
-rw-r--r-- | core/img/logo-icon-175px.png | bin | 0 -> 2946 bytes | |||
-rw-r--r-- | core/templates/login.php | 2 |
3 files changed, 14 insertions, 1 deletions
diff --git a/core/css/fixes.css b/core/css/fixes.css index 7ef44ba6909..54852eb9beb 100644 --- a/core/css/fixes.css +++ b/core/css/fixes.css @@ -38,6 +38,10 @@ select { background-image: url('../img/actions/settings.png'); } +/* IE8 needs PNG image for header logo */ +.ie8 #header .logo { + background-image: url(../img/logo-icon-175px.png); +} /* IE8 needs background to be set to same color to make transparency look good. */ .lte9 #body-login form input[type="text"] { @@ -51,6 +55,15 @@ select { border-bottom: 1px solid lightgrey; background-color: white; /* don't change background on hover */ } +.ie8 #body-login input[type="submit"] { + padding: 10px 5px; + margin-top: 3px; +} +/* for whatever unexplained reason */ +.ie8 #password { + width: 271px !important; + min-width: auto !important; +} /* disable opacity of info text on gradient since we cannot set a good backround color to use the filter&background hack as with the input labels */ diff --git a/core/img/logo-icon-175px.png b/core/img/logo-icon-175px.png Binary files differnew file mode 100644 index 00000000000..67e76498670 --- /dev/null +++ b/core/img/logo-icon-175px.png diff --git a/core/templates/login.php b/core/templates/login.php index db77f63bbd0..6751d92f656 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -55,7 +55,7 @@ script('core', [ autocomplete="on" autocapitalize="off" autocorrect="off" required> <label for="password" class="infield"><?php p($l->t('Password')); ?></label> <img class="svg" id="password-icon" src="<?php print_unescaped(image_path('', 'actions/password.svg')); ?>" alt=""/> - <input type="submit" id="submit" class="login primary icon-confirm" title="<?php p($l->t('Log in')); ?>" value="" disabled="disabled"/> + <input type="submit" id="submit" class="login primary icon-confirm svg" title="<?php p($l->t('Log in')); ?>" value="" disabled="disabled"/> </p> <?php if (isset($_['invalidpassword']) && ($_['invalidpassword'])): ?> |