Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Tenzing
/
Tz Tools
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
e0c9c37b
authored
2020-08-19 14:33:19 -0400
by
Jeff Balicki
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
ee
1 parent
fb9eaa6c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
3 deletions
com/Branding/css/tz_login.css
com/Branding/scripts/tz_login.js
com/Branding/css/tz_login.css
View file @
e0c9c37
...
...
@@ -69,6 +69,11 @@ body.login {
margin-top
:
9%
;
pointer-events
:
none
;
}
#login
h1
:lang
(
fr-CA
)
{
margin-left
:
31%
;
font-size
:
30px
;
}
}
#backtoblog
:before
{
...
...
@@ -179,6 +184,8 @@ label {
font-size
:
11px
;
}
#nav
{
text-shadow
:
none
;
text-shadow
:
0px
;
...
...
@@ -220,7 +227,12 @@ label {
display
:
block
;
position
:
relative
;
right
:
0px
;
margin-left
:
50px
!important
;
margin-left
:
0px
!important
;
}
label
:lang
(
fr-CA
)
{
margin-left
:
0px
!important
;
}
#user_pass
,
...
...
@@ -233,6 +245,7 @@ label {
background
:
transparent
;
box-shadow
:
none
;
border-bottom
:
1px
solid
#221D58
;
border-radius
:
0px
;
width
:
300px
;
}
...
...
com/Branding/scripts/tz_login.js
View file @
e0c9c37
...
...
@@ -9,10 +9,16 @@ jQuery(document).ready(function ($) {
first
.
toLowerCase
();
first
=
first
.
split
(
"/"
)[
1
];
var
lang
=
document
.
documentElement
.
lang
;
if
(
first
==
"wp-login.php"
)
{
$
(
'h1'
).
addClass
(
'login_h1'
);
$
(
'h1'
).
html
(
'LOG <span class="dark">IN:</span>'
);
if
(
lang
==
"fr-CA"
)
{
$
(
'h1'
).
addClass
(
'login_h1'
);
$
(
'h1'
).
html
(
"s'identifier"
);
}
else
{
$
(
'h1'
).
addClass
(
'login_h1'
);
$
(
'h1'
).
html
(
'LOG <span class="dark">IN:</span>'
);
}
}
else
if
(
first
=
'lostpassword'
)
{
$
(
'h1'
).
addClass
(
'login_h1'
);
$
(
'h1'
).
html
(
'RESET</br> <span class="dark">PASSWORD:</span>'
);
...
...
Please
register
or
sign in
to post a comment