Skip to content

Commit

Permalink
Merge pull request #347 from abhishek-webkul/gli-685
Browse files Browse the repository at this point in the history
Update back office logos
  • Loading branch information
rohit053 committed May 5, 2022
2 parents bed46de + 01375fe commit 3e07b09
Show file tree
Hide file tree
Showing 20 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion admin/themes/default/css/admin-theme.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion admin/themes/default/css/admin-theme_rtl.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion admin/themes/default/css/schemes/admin-theme-blue.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion admin/themes/default/css/schemes/admin-theme-contrast.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion admin/themes/default/css/schemes/admin-theme-flex.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion admin/themes/default/css/schemes/admin-theme-fruit.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion admin/themes/default/css/schemes/admin-theme-prune.css

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.

Binary file not shown.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion admin/themes/default/sass/partials/_header.sass
Expand Up @@ -13,7 +13,7 @@
font-size: 1.3em !important
position: relative
height: 36px
background: url('#{$img-path}/prestashop-avatar-header_shopname.png') no-repeat top left
background: url('#{$img-path}/qloapps-back-office-header.png') no-repeat top left
background-size: auto 36px
padding-left: 140px !important
@include margin(0, 5px, 0, 0)
Expand Down
4 changes: 2 additions & 2 deletions admin/themes/default/template/controllers/login/content.tpl
Expand Up @@ -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">
Expand All @@ -49,7 +49,7 @@
<div class="alert alert-warning">{$warningSslMessage}</div>
{/if}
</div>
<div id="shop-img"><img src="{$img_dir}preston-login@2x.png" alt="{$shop_name}" width="136px" height="136px" /></div>
<div id="shop-img"><img src="{$img_dir}qloapps-login@2x.png" alt="{$shop_name}" width="136px" height="136px" /></div>
<div class="flip-container">
<div class="flipper">
<div class="front panel">
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
8 changes: 4 additions & 4 deletions js/admin/login.js
Expand Up @@ -84,15 +84,15 @@ $(document).ready(function() {
});

//Preload images
$('<img/>')[0].src = img_dir+'preston-login@2x.png';
$('<img/>')[0].src = img_dir+'preston-login-wink@2x.png';
$('<img/>')[0].src = img_dir+'qloapps-login@2x.png';
$('<img/>')[0].src = img_dir+'qloapps-login-wink@2x.png';

$('button[name="submitLogin"]').on('mouseover', function() {
$('#shop-img img').attr('src', img_dir+'preston-login-wink@2x.png');
$('#shop-img img').attr('src', img_dir+'qloapps-login-wink@2x.png');
});

$('button[name="submitLogin"]').on('mouseout', function() {
$('#shop-img img').attr('src', img_dir+'preston-login@2x.png');
$('#shop-img img').attr('src', img_dir+'qloapps-login@2x.png');
});
});

Expand Down

0 comments on commit 3e07b09

Please sign in to comment.