Fix adminDrawerLogo

This commit is contained in:
grafixeyehero 2019-06-30 01:08:11 +03:00
parent 391851a200
commit 51a8569c15
4 changed files with 3 additions and 3 deletions

View File

@ -70,7 +70,7 @@ progress[aria-valuenow]:before {
} }
.adminDrawerLogo img { .adminDrawerLogo img {
height: 2.2em height: 4em
} }
div[data-role=controlgroup] a[data-role=button] { div[data-role=controlgroup] a[data-role=button] {

BIN
src/img/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

View File

@ -443,8 +443,8 @@ define(["dom", "layoutManager", "inputManager", "connectionManager", "events", "
function createDashboardMenu(apiClient) { function createDashboardMenu(apiClient) {
return getToolsMenuHtml(apiClient).then(function (toolsMenuHtml) { return getToolsMenuHtml(apiClient).then(function (toolsMenuHtml) {
var html = ""; var html = "";
html += '<a class="adminDrawerLogo clearLink" is="emby-linkbutton" href="home.html" style="text-align:left;">'; html += '<a class="adminDrawerLogo clearLink" is="emby-linkbutton" href="home.html">';
html += '<img src="img/logoblack.png" />'; html += '<img src="img/logo.png" />';
html += "</a>"; html += "</a>";
html += toolsMenuHtml; html += toolsMenuHtml;
navDrawerScrollContainer.innerHTML = html; navDrawerScrollContainer.innerHTML = html;