e0c9c37b by Jeff Balicki

ee

1 parent fb9eaa6c
......@@ -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;
}
......
......@@ -9,10 +9,16 @@ jQuery(document).ready(function ($) {
first.toLowerCase();
first = first.split("/")[1];
var lang = document.documentElement.lang;
if (first == "wp-login.php") {
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>');
......