-
Notifications
You must be signed in to change notification settings - Fork 515
Commit
Update back office logos
- Loading branch information
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ | |
<div id="login-panel"> | ||
<div id="login-header"> | ||
<h1 class="text-center"> | ||
<img id="logo" src="{$img_dir}prestashop@2x.png" width="123px" alt="PrestaShop" /> | ||
<img id="logo" src="{$img_dir}qloapps@2x.png" width="123px" alt="PrestaShop" /> | ||
</h1> | ||
<div class="text-center">{$qloapps_version}</div> | ||
<div id="error" class="hide alert alert-danger"> | ||
|
@@ -49,7 +49,7 @@ | |
<div class="alert alert-warning">{$warningSslMessage}</div> | ||
{/if} | ||
</div> | ||
<div id="shop-img"><img src="{$img_dir}preston[email protected]" alt="{$shop_name}" width="136px" height="136px" /></div> | ||
<div id="shop-img"><img src="{$img_dir}qloapps[email protected]" alt="{$shop_name}" width="136px" height="136px" /></div> | ||
<div class="flip-container"> | ||
<div class="flipper"> | ||
<div class="front panel"> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,15 +84,15 @@ $(document).ready(function() { | |
}); | ||
|
||
//Preload images | ||
$('<img/>')[0].src = img_dir+'preston[email protected]'; | ||
$('<img/>')[0].src = img_dir+'preston[email protected]'; | ||
$('<img/>')[0].src = img_dir+'qloapps[email protected]'; | ||
$('<img/>')[0].src = img_dir+'qloapps[email protected]'; | ||
|
||
$('button[name="submitLogin"]').on('mouseover', function() { | ||
$('#shop-img img').attr('src', img_dir+'preston[email protected]'); | ||
$('#shop-img img').attr('src', img_dir+'qloapps[email protected]'); | ||
}); | ||
|
||
$('button[name="submitLogin"]').on('mouseout', function() { | ||
$('#shop-img img').attr('src', img_dir+'preston[email protected]'); | ||
$('#shop-img img').attr('src', img_dir+'qloapps[email protected]'); | ||
}); | ||
}); | ||
|
||
|