resolves lint errors

This commit is contained in:
shivangikakkar 2018-09-25 17:47:17 +05:30
parent bfdbd8199f
commit 1ea04587d9
2 changed files with 3 additions and 3 deletions

View file

@ -671,13 +671,13 @@ span ~ .panel-header-text {
}
.container-close-tab {
width:50%;
opacity: 0;
}
.container-info-tab-row:hover .container-close-tab {
opacity: 0.5;
}
.container-info-tab-row .container-close-tab:hover {
opacity: 1;
}

View file

@ -779,7 +779,7 @@ Logic.registerPanel(P_CONTAINER_INFO, {
tr.innerHTML = escaped`
<td></td>
<td class="container-info-tab-title truncate-text" title="${tab.url}" >${tab.title}</td>
<td><img src="/img/container-close-tab.svg" id="close-tab" class="container-close-tab clickable" /></td>`;
<td><img src="/img/container-close-tab.svg" style="width:50%;" id="close-tab" class="container-close-tab clickable" /></td>`;
tr.querySelector("td").appendChild(Utils.createFavIconElement(tab.favIconUrl));
document.getElementById("container-info-table").appendChild(fragment);