Skip to content

Commit 77a0cc4

Browse files
author
Dmytro Lukianenko
committed
[FIX] login style fix
1 parent 06125b8 commit 77a0cc4

3 files changed

Lines changed: 13 additions & 5 deletions

File tree

-12.6 KB
Loading

manager/media/style/default/login.tpl

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,15 @@
66
<meta name="robots" content="noindex, nofollow">
77
<meta name="viewport" content="width=device-width">
88
<link rel="icon" type="image/ico" href="[+favicon+]">
9-
9+
<meta name="theme-color" content="#0d47a1" />
10+
<meta name="apple-mobile-web-app-capable" content="yes" />
11+
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
1012
<style>
1113
/* [FONTS] */
1214
html { font-size: 16px }
15+
body {
16+
background-color: #0d47a1; /* initial color */
17+
}
1318
@media (max-width: 900px) {
1419
html { font-size: 16px; }
1520
}
@@ -40,7 +45,7 @@
4045
html[lang="th"] body { font-family: "Sukhumvit Set", "Helvetica Neue", Helvetica, Arial, sans-serif; }
4146
/* For Arabic Font */
4247
html[lang="fa"] body { font-family: Tahoma, Arial, sans-serif; }
43-
body { background-color: #fafafa; color: #444; }
48+
body { background-color: #0d47a1; color: #444; }
4449
body.drag *, body.drag::after { cursor: grabbing !important; cursor: -moz-grabbing !important; cursor: -webkit-grabbing !important; cursor: -moz-grab !important; -moz-user-select: none !important; -webkit-user-select: none !important; user-select: none !important }
4550
body.drag::after { bottom: 0; content: ""; left: 0; position: fixed; right: 0; top: 0; z-index: 999 }
4651
body, ul, li { padding: 0; margin: 0; }
@@ -60,6 +65,8 @@
6065
a.text-muted:focus, a.text-muted:hover { color: #4b5257 !important }
6166
6267
/* [ FORMS ] */
68+
#username, #password, #FMP-email { border-radius: 20px!important; }
69+
#password {margin-bottom: 24px; }
6370
legend { font-size: 1em; }
6471
label { cursor: pointer; display: inline-block; margin-bottom: .5em }
6572
label:not([for]) { cursor: default }
@@ -138,7 +145,7 @@
138145
min-height: 1px;
139146
height: auto;
140147
}
141-
body,body.lightness,body.light,body.dark,body.darkness {background: #2a313b url('[+login_bg+]') no-repeat fixed center !important;background-size: cover !important;margin:0px;
148+
body,body.lightness,body.light,body.dark,body.darkness {background: #000 url('[+login_bg+]') no-repeat fixed center !important;background-size: cover !important;margin:0px;
142149
}
143150
@media (max-width: 479px) {
144151
body,body.lightness,body.light,body.dark,body.darkness {background-image: none !important;}
@@ -351,6 +358,7 @@
351358
}
352359
#submitButton {
353360
float: right;
361+
border-radius: 20px;
354362
}
355363
/* onManagerLoginFormRender */
356364
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<label id="FMP-email_label" for="FMP_email">[%account_email%]:</label>
2-
<input id="FMP-email" type="text">
3-
<button id="FMP-email_button" type="button"
2+
<input id="FMP-email" type="text" style="border-radius: 20px!important;">
3+
<button id="FMP-email_button" type="button" style="border-radius: 20px"
44
onclick="window.location = 'index.php?action=send_email&email='+encodeURIComponent(document.getElementById('FMP-email').value);">
55
[%send%]
66
</button>

0 commit comments

Comments
 (0)