Merge pull request #376 from grafixeyehero/adminDrawerLogo

Fix adminDrawerLogo
This commit is contained in:
Anthony Lavado
2019-06-30 02:57:14 -04:00
committed by GitHub
4 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ progress[aria-valuenow]:before {
}
.adminDrawerLogo img {
height: 2.2em
height: 4em
}
div[data-role=controlgroup] a[data-role=button] {
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

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